File tree 3 files changed +9
-11
lines changed
3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 8
8
release :
9
9
name : Release
10
10
runs-on : ubuntu-latest
11
+
11
12
steps :
12
13
- name : Branch name
13
14
id : branch_name
14
15
run : |
15
16
echo ::set-output name=SOURCE_BRANCH::${GITHUB_REF#refs/heads/}
16
17
echo ::set-output name=TARBALL_FOCAL::grammarly-focal-${GITHUB_REF#refs/tags/}.tgz
17
18
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
20
23
- run : yarn install
21
24
- run : yarn build
22
25
- run : yarn test
Original file line number Diff line number Diff line change 7
7
name : Run tests
8
8
runs-on : ubuntu-latest
9
9
10
- strategy :
11
- matrix :
12
- node-version : [12.x]
13
-
14
10
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
18
13
with :
19
- node-version : ${{ matrix.node-version }}
14
+ node-version : 16
20
15
- run : yarn install
21
16
- run : yarn build
22
17
- run : yarn test
Original file line number Diff line number Diff line change 1
- v12.14.1
1
+ v16
You can’t perform that action at this time.
0 commit comments