Skip to content

Commit

Permalink
devops: drop unsupported Node.js installations & housekeeping (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Jan 11, 2024
1 parent 9347c67 commit 18744d5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i -g npm@8
- run: npm i -g yarn@1
- run: npm i -g pnpm@7
- run: npm i -g pnpm@8
- run: npm ci
- run: npx playwright install-deps
- run: npm run build
Expand Down

0 comments on commit 18744d5

Please sign in to comment.