Skip to content

Commit

Permalink
fix: Use newer node versions in CI, fix commands
Browse files Browse the repository at this point in the history
  • Loading branch information
raulsteurer committed Sep 19, 2023
1 parent b47f12e commit 2b7f741
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['14.x', '16.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
node: ['16.x', '18.x']
os: [ubuntu-latest, macOS-latest]

steps:
- name: Checkout repo
Expand All @@ -23,10 +23,10 @@ jobs:
uses: bahmutov/npm-install@v1

- name: Lint
run: yarn lint
run: npm run lint

- name: Test
run: yarn test --ci --coverage --maxWorkers=2
run: npm run test --ci --coverage --maxWorkers=2

- name: Build
run: yarn build
run: npm run build

0 comments on commit 2b7f741

Please sign in to comment.