Skip to content

Commit fedbac1

Browse files
committedSep 15, 2021
chore: update gh actions
1 parent e324b28 commit fedbac1

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed
 

‎.github/workflows/test.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: Test
22
on:
3-
push:
4-
branches:
5-
- master
63
pull_request:
74
branches:
85
- master
@@ -26,10 +23,12 @@ jobs:
2623
./packages/*/node_modules
2724
./packages/*/dist
2825
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
26+
- name: Install Dependencies
27+
if: steps.cache.outputs.cache-hit != 'true'
28+
run: |
29+
npm install
30+
npm run build
31+
npx lerna link
3332
3433
check:
3534
name: Check

0 commit comments

Comments
 (0)
Please sign in to comment.