Skip to content

Commit

Permalink
ci: use Node.js v16 instead of v14 for some CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Jun 9, 2021
1 parent 7386e92 commit da5712b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js v14
- name: Use Node.js v16
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
- run: npm ci
- name: Run unit tests
run: npm run test:unit:coverage
Expand Down Expand Up @@ -56,16 +56,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- name: Install dependencies
run: npm ci
- name: Download compiled source code artifact
uses: actions/download-artifact@v2
with:
name: compiled-source-node-14
name: compiled-source-node-16
path: target/src/
- name: Semantic release
run: npx semantic-release
Expand Down

0 comments on commit da5712b

Please sign in to comment.