File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,22 +3,28 @@ on: [push]
33jobs :
44 PrettierJS :
55 runs-on : ubuntu-latest
6- container : node:12-stretch
76 steps :
8- - uses : actions/checkout@v2
7+ - uses : actions/checkout@v4
8+ - uses : actions/setup-node@v4
9+ with :
10+ node-version : 22
911 - run : yarn install
1012 - run : yarn run prettier-diff
1113 Lint :
1214 runs-on : ubuntu-latest
13- container : node:12-stretch
1415 steps :
15- - uses : actions/checkout@v2
16+ - uses : actions/checkout@v4
17+ - uses : actions/setup-node@v4
18+ with :
19+ node-version : 22
1620 - run : yarn install
1721 - run : yarn run lint-diff
1822 Jest :
1923 runs-on : ubuntu-latest
20- container : node:12-stretch
2124 steps :
22- - uses : actions/checkout@v2
25+ - uses : actions/checkout@v4
26+ - uses : actions/setup-node@v4
27+ with :
28+ node-version : 22
2329 - run : yarn install
2430 - run : yarn run test
You can’t perform that action at this time.
0 commit comments