Skip to content

Commit

Permalink
upgrade node version for workflows (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
aksakalli committed Jan 12, 2022
1 parent 04edbb9 commit 14c1dc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2.1.5
- name: Use Node.js 17.x
uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '17.x'
- name: Install dependencies
run: npm ci
- name: Lint check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '17.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
Expand Down

0 comments on commit 14c1dc3

Please sign in to comment.