We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91f4c6a commit 850db43Copy full SHA for 850db43
1 file changed
.github/workflows/publish.yml
@@ -18,13 +18,15 @@ jobs:
18
run: echo "::set-output name=dir::$(yarn cache dir)"
19
20
- uses: actions/cache@v3
21
- id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
+ id: yarn-cache
22
with:
23
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
24
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
25
restore-keys: |
26
${{ runner.os }}-yarn-
27
28
+ - run: yarn install
29
+
30
- run: yarn test
31
32
- run: yarn build
0 commit comments