Skip to content

Commit

Permalink
test node 16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli committed Jan 2, 2025
1 parent 24cced4 commit b9248e9
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,36 @@ on:
workflow_dispatch:

jobs:
test:
node-14:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: ['14.6', '14.18', '14', '16']
node-version: ['14.18', '14']
steps:
- uses: actions/checkout@v4
with: { submodules: true }
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --global npm@7
- run: npm ci
- run: npm install --no-save rollup@3
- run: npm test
- run: npm run test:dist

node-16:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['16.0', '16']
steps:
- uses: actions/checkout@v4
with: { submodules: true }
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- if: matrix.node-version != 16
run: npm install --global npm@7
- run: npm ci
- run: npm install --no-save rollup@3
- run: npm test
Expand Down

0 comments on commit b9248e9

Please sign in to comment.