Skip to content

Commit

Permalink
ci: run on newer nodejs versions; drop v8
Browse files Browse the repository at this point in the history
  • Loading branch information
legobeat committed Oct 23, 2024
1 parent caeafd4 commit fab4ccb
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version:
- 10.x
- 12.x
- 14.x
- 16.x
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -48,7 +55,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x, 16.x, 20.x, 18.x]
node-version:
- 10.x
- 12.x
- 14.x
- 16.x
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -64,4 +78,4 @@ jobs:
if ! git diff --exit-code -- . ':!dist/*.map' ':!package-lock.json' ; then
echo "Working tree dirty at end of job"
exit 1
fi
fi

0 comments on commit fab4ccb

Please sign in to comment.