Skip to content

Commit 929514d

Browse files
authored
chore: ci fixes (#195)
* chore: ci fixes * chore: ci fixes * chore: ci fixes * chore: ci fixes
1 parent 0e593ff commit 929514d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/setup/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ runs:
1010
node-version-file: .nvmrc
1111

1212
- name: Get yarn cache directory path
13-
uses: actions/setup-node@v3
1413
id: yarn-cache-dir-path
14+
shell: bash
1515
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
1616

1717
- uses: actions/cache@v3
1818
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
1919
with:
2020
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') }}
2222
restore-keys: |
2323
${{ runner.os }}-yarn-
2424

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: CI
22
on:
33
push:
44
branches:
5-
- main
5+
- master
66
pull_request:
77
branches:
8-
- main
8+
- master
99

1010
jobs:
1111
lint:

0 commit comments

Comments
 (0)