We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e324b28 commit fedbac1Copy full SHA for fedbac1
.github/workflows/test.yml
@@ -1,8 +1,5 @@
1
name: Test
2
on:
3
- push:
4
- branches:
5
- - master
6
pull_request:
7
branches:
8
- master
@@ -26,10 +23,12 @@ jobs:
26
23
./packages/*/node_modules
27
24
./packages/*/dist
28
25
key: ${{ runner.os }}-build-${{ env.CACHE_NAME }}-${{ github.event.pull_request.head.sha }}
29
- - run: |
30
- npm install
31
- npm run build
32
- npx lerna link
+ - name: Install Dependencies
+ if: steps.cache.outputs.cache-hit != 'true'
+ run: |
+ npm install
+ npm run build
+ npx lerna link
33
34
check:
35
name: Check
0 commit comments