Skip to content

Commit

Permalink
fix: Fixed JS CI to use latest node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
frol committed Jun 11, 2024
1 parent dd618a9 commit 9a01c1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
node-version: ['14', '15', '16']
node-version: ['latest', 'lts/*']
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: cd npm && yarn && yarn test --verbose
run: cd npm && yarn && yarn test --verbose

0 comments on commit 9a01c1d

Please sign in to comment.