Skip to content

Commit

Permalink
ci: use Node.js v18 in continuous integration pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Oct 9, 2022
1 parent eeab71b commit 9fe1bff
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@v3
- name: Use Node.js v14
- name: Use Node.js v18
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
- run: npm ci
- name: Run unit tests
run: npm run test:unit:coverage
Expand Down Expand Up @@ -54,16 +54,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Download compiled source code artifact
uses: actions/download-artifact@v3
with:
name: compiled-source-node-16
name: compiled-source-node-18
path: target/src/
- name: Semantic release
run: npx semantic-release
Expand Down

0 comments on commit 9fe1bff

Please sign in to comment.