Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Examples package lock update #7000

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 --progress=false --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 --progress=false --no-fund
npm ci --no-fund
npm run build
Loading