Skip to content

Commit adc184e

Browse files
authored
Set the node version to 16 (#184)
1 parent f81d5eb commit adc184e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/release.yml

+11
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ jobs:
1919
with:
2020
submodules: recursive
2121

22+
- name: Print Node.js version before setting the version 16
23+
run: node -v
24+
25+
- name: Set up Node.js ${{ matrix.node-version }}
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
30+
- name: Print Node.js version after setting the version 16
31+
run: node -v
32+
2233
- name: Get the version
2334
id: get-version
2435
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}

0 commit comments

Comments
 (0)