Skip to content

Commit

Permalink
update actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Sep 23, 2022
1 parent 1b944df commit 9f6866d
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,25 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
cache-dependency-path: |
package.json
packages/*/package.json
cache-dependency-path: '**/package.json'
- run: npm i
- run: npm run lint

karma:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
cache-dependency-path: |
package.json
packages/*/package.json
cache-dependency-path: '**/package.json'
- run: npm i
- run: npx playwright install-deps
- run: npm run ci-karma
Expand All @@ -50,13 +46,11 @@ jobs:
- 18
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
cache-dependency-path: |
package.json
packages/*/package.json
cache-dependency-path: '**/package.json'
- run: npm i
- run: npm run ci-tests

0 comments on commit 9f6866d

Please sign in to comment.