Skip to content

Commit

Permalink
chore: add yarn install step to the CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hydrosquall committed Sep 28, 2022
1 parent 37b5d6c commit c78600f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-${{ env.BINARY_CACHE_INDEX }}
- name: Install
run: yarn
shell: bash

- name: Bootstrap
run: yarn bootstrap:bootstrap
shell: bash
Expand Down Expand Up @@ -128,6 +132,10 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-${{ env.BINARY_CACHE_INDEX }}
- name: Install
run: yarn
shell: bash

- name: Bootstrap
run: yarn bootstrap:bootstrap
shell: bash
Expand Down Expand Up @@ -175,6 +183,10 @@ jobs:
echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
# if: runner.os == 'Linux'

- name: Install
run: yarn
shell: bash

- name: Bootstrap
run: yarn bootstrap:bootstrap
shell: bash
Expand Down

0 comments on commit c78600f

Please sign in to comment.