Skip to content

Commit d996b9a

Browse files
committed
use nvmrc for ga
1 parent a6c3c56 commit d996b9a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
- uses: actions/checkout@v2
4040

4141
# Setup node environment
42-
- uses: actions/setup-node@v1
42+
- uses: actions/setup-node@v3
4343
with:
44-
node-version: 15
44+
node-version-file: '.nvmrc'
4545
registry-url: https://registry.npmjs.org/
4646

4747
# Bump version to the next prerelease (patch) with rc suffix

.github/workflows/nodejs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11-
- name: Use Node.js 12.x
12-
uses: actions/setup-node@v1
11+
- name: Use Node.js
12+
uses: actions/setup-node@v3
1313
with:
14-
node-version: 12.x
14+
node-version-file: '.nvmrc'
1515
- run: yarn install
1616
- run: yarn lint-test

0 commit comments

Comments
 (0)