@@ -2,53 +2,53 @@ name: Check
22on :
33 push :
44 branches :
5- - ' ** '
5+ - " ** "
66jobs :
77 lint :
88 runs-on : ubuntu-latest
99 steps :
10- - uses : actions/checkout@v2
11- - uses : actions/setup-node@v2
10+ - uses : actions/checkout@v4
11+ - uses : actions/setup-node@v4
1212 with :
13- node-version : ' 16 '
14- cache : ' yarn'
15- - name : Install dependecies
13+ node-version : " 16 "
14+ cache : " yarn"
15+ - name : Install dependencies
1616 run : yarn install --frozen-lockfile
1717 - name : Run lint script
1818 run : yarn lint
1919 build :
2020 runs-on : ubuntu-latest
2121 steps :
22- - uses : actions/checkout@v2
23- - uses : actions/setup-node@v2
22+ - uses : actions/checkout@v4
23+ - uses : actions/setup-node@v4
2424 with :
25- node-version : ' 16 '
26- cache : ' yarn'
27- - name : Install dependecies
25+ node-version : " 16 "
26+ cache : " yarn"
27+ - name : Install dependencies
2828 run : yarn install --frozen-lockfile
2929 - name : Run build script
3030 run : yarn build
3131 test :
3232 runs-on : ubuntu-latest
3333 steps :
34- - uses : actions/checkout@v2
35- - uses : actions/setup-node@v2
34+ - uses : actions/checkout@v4
35+ - uses : actions/setup-node@v4
3636 with :
37- node-version : ' 16 '
38- cache : ' yarn'
39- - name : Install dependecies
37+ node-version : " 16 "
38+ cache : " yarn"
39+ - name : Install dependencies
4040 run : yarn install --frozen-lockfile
4141 - name : Run test script
4242 run : yarn test
4343 e2e :
4444 runs-on : ubuntu-latest
4545 steps :
46- - uses : actions/checkout@v2
47- - uses : actions/setup-node@v2
46+ - uses : actions/checkout@v4
47+ - uses : actions/setup-node@v4
4848 with :
49- node-version : ' 16 '
50- cache : ' yarn'
51- - name : Install dependecies
49+ node-version : " 16 "
50+ cache : " yarn"
51+ - name : Install dependencies
5252 run : yarn install --frozen-lockfile
5353 - name : Start examples and run e2e tests
5454 run : yarn e2e
0 commit comments