Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherny committed Nov 20, 2023
1 parent 3da3612 commit fdbbda2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x, 17.x, 18.x]
node-version: [16.x, 17.x, 18.x, 19.x, 20.x, 21.x]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --ignore-engines --verbose
- name: Run tests
run: yarn test
env:
CI: true
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --ignore-engines --verbose
- name: Run tests
run: npm test
env:
CI: true

0 comments on commit fdbbda2

Please sign in to comment.