Skip to content

Commit

Permalink
Fix create-release workflow to update npm and use node 16
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Irish <[email protected]>
  • Loading branch information
markdirish committed Mar 31, 2022
1 parent f55aee2 commit ca52e7c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Upgrade NPM
run: npm install -g npm
- run: npm install -g node-gyp
- run: npm ci --production
- run: ./node_modules/.bin/node-pre-gyp rebuild --production
Expand Down

0 comments on commit ca52e7c

Please sign in to comment.