Skip to content

Commit

Permalink
chore: fix install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Jan 11, 2025
1 parent 9e71ab9 commit 5a8072c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline

lint-affected:
runs-on: ubuntu-latest
Expand All @@ -38,8 +38,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
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 lint

Expand All @@ -55,8 +55,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
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

Expand All @@ -72,8 +72,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
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 e2e --exclude=docs-app

Expand All @@ -89,8 +89,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
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 build

Expand All @@ -106,8 +106,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec copy:schematics
- run: pnpm exec schematics:check
24 changes: 12 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline

lint:
runs-on: ubuntu-latest
Expand All @@ -40,8 +40,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
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 lint

Expand All @@ -57,8 +57,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
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

Expand All @@ -74,8 +74,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
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 e2e --exclude=docs-app

Expand All @@ -91,8 +91,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec build

Expand All @@ -108,8 +108,8 @@ jobs:
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm exec --frozen-lockfile --non-interactive
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile --prefer-offline
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec copy:schematics
- run: pnpm exec schematics:check

0 comments on commit 5a8072c

Please sign in to comment.