Skip to content

Commit

Permalink
Wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jackw committed Oct 16, 2023
1 parent 0b58692 commit 38c45dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm ci
run: npm ci --prefer-offline --no-audit
- name: Check types
run: npm exec nx affected -- --target typecheck --parallel
- name: Lint
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
cache: 'npm'

- name: Install package dependencies
run: npm ci
run: npm ci --prefer-offline --no-audit

- name: Generate plugin
run: npm exec nx run @grafana/create-plugin:${{ matrix.scaffoldCommand.cmd }}
Expand All @@ -86,7 +86,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('./packages/create-plugin/generated/package-lock.json') }}

- name: Install generated plugin dependencies
run: npm install
run: npm install --prefer-offline --no-audit
working-directory: ./packages/create-plugin/generated

- name: Lint plugin frontend
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm ci
run: npm ci --prefer-offline --no-audit

- name: Build
run: npm run build
Expand Down

0 comments on commit 38c45dc

Please sign in to comment.