File tree Expand file tree Collapse file tree 1 file changed +5
-17
lines changed Expand file tree Collapse file tree 1 file changed +5
-17
lines changed Original file line number Diff line number Diff line change 1
1
name : Code quality
2
2
3
- on :
4
- push :
5
- branches :
6
- - master
7
- paths :
8
- - " .github/**"
9
- - " yarn.lock"
10
- - " **.js"
11
- pull_request :
12
- paths :
13
- - " .github/**"
14
- - " yarn.lock"
15
- - " **.js"
3
+ on : push
16
4
17
5
jobs :
18
6
test_and_lint :
19
7
runs-on : ubuntu-latest
20
8
strategy :
21
9
matrix :
22
- node : [10, 12, 14, 16]
10
+ node : [12, 14, 16, 18 ]
23
11
steps :
24
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
25
13
26
- - uses : actions/cache@master
14
+ - uses : actions/cache@v3
27
15
id : node_modules_cache
28
16
with :
29
17
path : node_modules
30
- key : ${{ runner.os }}-yarn-${{ hashFiles('** /yarn.lock') }}
18
+ key : ${{ runner.os }}-yarn-${{ hashFiles('. /yarn.lock') }}
31
19
32
20
- run : yarn install --frozen-lockfile
33
21
if : steps.node_modules_cache.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments