Skip to content

Commit

Permalink
Update CI action
Browse files Browse the repository at this point in the history
* Update node version.
* Use the latest versions of setup-node and checkout actions.
* Use `--frozen-lockfile` flag when running `yarn install`.
* Update script to run the new test suite.
  • Loading branch information
aashu16 authored and s-yadav committed Apr 28, 2024
1 parent 9f23988 commit 91e8fd2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14]
node: [20]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org

- name: Install
run: yarn
run: yarn install --frozen-lockfile

- name: Lint
run: yarn run lint

- name: Test
run: TEST_BROWSER=ChromeHeadless yarn test
run: yarn test

0 comments on commit 91e8fd2

Please sign in to comment.