Skip to content

Commit

Permalink
Merge branch 'main' into renovate/cypress-10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jonambas authored Sep 5, 2022
2 parents 15f9ce2 + b0ccfdd commit 7d116ea
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
testing:
linting:
runs-on: ubuntu-latest
timeout-minutes: 30

Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
push:
branches:
- main
pull_request:

jobs:
testing:
runs-on: ubuntu-latest
timeout-minutes: 30

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run cypress:run
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ yarn-error.log*

# typescript
*.tsbuildinfo

cypress/videos

0 comments on commit 7d116ea

Please sign in to comment.