Skip to content

Commit

Permalink
ci: install Cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Jan 11, 2025
1 parent f90e9dc commit c1377b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec nx affected -t test
- run: pnpm exec nx affected -t test --exclude=docs-app

e2e-affected:
runs-on: ubuntu-latest
Expand All @@ -74,6 +74,7 @@ jobs:
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- run: pnpm exec cypress install
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec nx affected -t e2e --exclude=docs-app --parallel=1

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec nx run-many -t test
- run: pnpm exec nx run-many -t test --exclude=docs-app

e2e:
runs-on: ubuntu-latest
Expand All @@ -76,6 +76,7 @@ jobs:
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- run: pnpm exec cypress install
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec nx run-many -t e2e --exclude=docs-app --parallel=1

Expand Down

0 comments on commit c1377b0

Please sign in to comment.