Skip to content

Commit

Permalink
update node version in cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
MZanggl committed Nov 3, 2022
1 parent 229f60f commit d55be8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.release.target_commitish }}
- name: Use Node.js 12
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: git config --global user.name "GitHub CD bot"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
- run: npm ci
- run: npm run build --if-present
- run: npm run coverage
Expand Down

0 comments on commit d55be8c

Please sign in to comment.