Skip to content

Commit edb033f

Browse files
committed
Add yarn install.
1 parent 5541d7a commit edb033f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/examples.yml

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
node-version: "10.x"
1717
- uses: actions/checkout@v1
1818
- name: Cache node modules
19+
id: cache-modules
1920
uses: actions/cache@v1
2021
with:
2122
path: node_modules
@@ -24,6 +25,9 @@ jobs:
2425
${{ runner.OS }}-build-${{ env.cache-name }}-
2526
${{ runner.OS }}-build-
2627
${{ runner.OS }}-
28+
- name: Install
29+
if: steps.cache-modules.outputs.cache-hit != 'true'
30+
run: yarn install
2731
- name: Bootstrap
2832
run: yarn bootstrap
2933
- name: Build examples

0 commit comments

Comments
 (0)