Skip to content

Commit

Permalink
ci: remove support for Node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlet committed Sep 28, 2024
1 parent 7b33441 commit fd03f9e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [ '16', '18', '20', '22' ]
node: [ '18', '20', '22' ]
qwik: [ '1.7', '1.8', '1.9' ]
check: [ 'test' ]
include:
Expand Down Expand Up @@ -54,7 +54,8 @@ jobs:
- name: 📥 Download deps
run: |
pnpm install
pnpm install @builder.io/qwik@${{ matrix.qwik }}
pnpm --filter "{packages/qwik-testing-library}" install @builder.io/qwik@${{ matrix.qwik }}
pnpm --filter "{apps/qwik-basic-demo}" install @builder.io/qwik@${{ matrix.qwik }}
- name: ▶️ Run ${{ matrix.check }}
run: npm ${{ matrix.check }}
Expand Down

0 comments on commit fd03f9e

Please sign in to comment.