Skip to content

Commit df10b5a

Browse files
Use node 16
1 parent 3ba2f9f commit df10b5a

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/release.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@ jobs:
88
release:
99
name: Release
1010
runs-on: ubuntu-latest
11+
1112
steps:
1213
- name: Branch name
1314
id: branch_name
1415
run: |
1516
echo ::set-output name=SOURCE_BRANCH::${GITHUB_REF#refs/heads/}
1617
echo ::set-output name=TARBALL_FOCAL::grammarly-focal-${GITHUB_REF#refs/tags/}.tgz
1718
echo ::set-output name=TARBALL_FOCAL_ATOM::grammarly-focal-atom-${GITHUB_REF#refs/tags/}.tgz
18-
- name: Checkout code
19-
uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
20+
- uses: actions/setup-node@v3
21+
with:
22+
node-version: 16
2023
- run: yarn install
2124
- run: yarn build
2225
- run: yarn test

.github/workflows/tests.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,11 @@ jobs:
77
name: Run tests
88
runs-on: ubuntu-latest
99

10-
strategy:
11-
matrix:
12-
node-version: [12.x]
13-
1410
steps:
15-
- uses: actions/checkout@v2
16-
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
1813
with:
19-
node-version: ${{ matrix.node-version }}
14+
node-version: 16
2015
- run: yarn install
2116
- run: yarn build
2217
- run: yarn test

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v12.14.1
1+
v16

0 commit comments

Comments
 (0)