Skip to content

Commit

Permalink
actions: add node 22, and remove node 14, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Dec 9, 2024
1 parent 1dbfef6 commit 63761c2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,21 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x, 22.x]

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 }}
- run: npm install -g npm@7
if: ${{ matrix.node-version == '14.x' }}
- run: |
npm ci
npm pack
env:
CI: true
- uses: actions/upload-artifact@v3
if: ${{ matrix.node-version == '14.x' }}
- uses: actions/upload-artifact@v4
if: ${{ matrix.node-version == '16.x' }}
with:
name: asconfigc
path: asconfigc-*.tgz
Expand Down

0 comments on commit 63761c2

Please sign in to comment.