Skip to content

Commit

Permalink
Update github action's node to version 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuripetusko committed Jan 26, 2024
1 parent fde7cd2 commit f28c424
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
ref: ${{ github.event.release.target_commitish }}
# install Node.js
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
# Specifies the registry, this field is required!
registry-url: 'https://registry.npmjs.org'
# clean install of your projects' deps. We use "npm ci" to avoid package lock changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Run unit tests
uses: actions/setup-node@v1
with:
node-version: '16'
node-version: '18'
- run: yarn install
- run: yarn test:2.0.0

Expand Down

0 comments on commit f28c424

Please sign in to comment.