File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ runs:
10
10
node-version-file : .nvmrc
11
11
12
12
- name : Get yarn cache directory path
13
- uses : actions/setup-node@v3
14
13
id : yarn-cache-dir-path
14
+ shell : bash
15
15
run : echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
16
16
17
17
- uses : actions/cache@v3
18
18
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
19
19
with :
20
20
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
21
- key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', , '**/package.json') }}
21
+ key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', '**/package.json') }}
22
22
restore-keys : |
23
23
${{ runner.os }}-yarn-
24
24
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: CI
2
2
on :
3
3
push :
4
4
branches :
5
- - main
5
+ - master
6
6
pull_request :
7
7
branches :
8
- - main
8
+ - master
9
9
10
10
jobs :
11
11
lint :
You can’t perform that action at this time.
0 commit comments