Skip to content

Commit

Permalink
renamed clean-install and added no audit
Browse files Browse the repository at this point in the history
  • Loading branch information
kpal81xd committed Oct 1, 2024
1 parent eb7283a commit d49e525
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm clean-install --progress=false --no-fund
run: npm ci --progress=false --no-fund --no-audit

- name: Build PlayCanvas
run: npm run build
Expand All @@ -53,7 +53,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm clean-install --progress=false --no-fund
run: npm ci --progress=false --no-fund --no-audit

- name: Build API reference manual
run: npm run docs
Expand All @@ -73,15 +73,15 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm clean-install --progress=false --no-fund
run: npm ci --progress=false --no-fund --no-audit

- name: Run ESLint
run: npm run lint

- name: Run ESLint on examples
working-directory: ./examples
run: |
npm clean-install --progress=false --no-fund
npm ci --progress=false --no-fund --no-audit
npm run lint
typescript-declarations:
Expand All @@ -99,7 +99,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm clean-install --progress=false --no-fund
run: npm ci --progress=false --no-fund --no-audit

- name: Build TypeScript declarations
run: npm run build:types
Expand All @@ -122,7 +122,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm clean-install --no-fund
run: npm ci --no-fund --no-audit

- name: Run unit tests
run: npm test
Expand All @@ -142,7 +142,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm clean-install --progress=false --no-fund
run: npm ci --progress=false --no-fund --no-audit

- name: Build PlayCanvas (UMD-only)
run: npm run build:umd
Expand All @@ -168,10 +168,10 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm clean-install --progress=false --no-fund
run: npm ci --progress=false --no-fund --no-audit

- name: Build Examples Browser
working-directory: ./examples
run: |
npm clean-install --no-fund
npm ci --no-fund
npm run build

0 comments on commit d49e525

Please sign in to comment.