Skip to content

Commit

Permalink
Merge pull request #128 from EdJoPaTo/ci-nodejs-20
Browse files Browse the repository at this point in the history
ci(nodejs): only run on LTS version
  • Loading branch information
maxlath committed Mar 3, 2024
2 parents b325774 + d18c190 commit 08e306e
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,13 @@ on:

jobs:
test:
name: Node.js ${{ matrix.node-version }}
name: Node.js
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
- 12
steps:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
node-version: 'lts/*'
- uses: actions/checkout@v4
- run: npm install
- run: npm test
- run: npm pack

0 comments on commit 08e306e

Please sign in to comment.