Skip to content

Commit

Permalink
fix(GHA): install before install:all
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Nov 12, 2024
1 parent e269a6b commit f78fad5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/lint-build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
cache: 'yarn'

- name: Install
run: yarn install:all
run: |
yarn
yarn install:all
- name: Lint
run: yarn run lint
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
cache: 'yarn'

- name: Install
run: yarn install:all
run: |
yarn
yarn install:all
- name: Run E2E Tests
run: yarn test:e2e:ci
Binary file modified .yarn/install-state.gz
Binary file not shown.

0 comments on commit f78fad5

Please sign in to comment.