mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
ci: skip puppeteer chrome download
As per https://github.com/puppeteer/puppeteer#installation Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
12e3f740c9
commit
67a761b7b2
6 changed files with 10 additions and 1 deletions
1
.github/workflows/command-compile.yml
vendored
1
.github/workflows/command-compile.yml
vendored
|
|
@ -90,6 +90,7 @@ jobs:
|
|||
- name: Install dependencies & build
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
run: |
|
||||
npm ci
|
||||
npm run build --if-present
|
||||
|
|
|
|||
3
.github/workflows/cypress.yml
vendored
3
.github/workflows/cypress.yml
vendored
|
|
@ -19,6 +19,9 @@ jobs:
|
|||
nodeVersion: ${{ steps.versions.outputs.nodeVersion }}
|
||||
npmVersion: ${{ steps.versions.outputs.npmVersion }}
|
||||
|
||||
env:
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
|
||||
steps:
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
|
|
|
|||
1
.github/workflows/lint-eslint.yml
vendored
1
.github/workflows/lint-eslint.yml
vendored
|
|
@ -74,6 +74,7 @@ jobs:
|
|||
- name: Install dependencies
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
run: npm ci
|
||||
|
||||
- name: Lint
|
||||
|
|
|
|||
2
.github/workflows/node-tests.yml
vendored
2
.github/workflows/node-tests.yml
vendored
|
|
@ -65,6 +65,7 @@ jobs:
|
|||
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
@ -130,6 +131,7 @@ jobs:
|
|||
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
|
|||
1
.github/workflows/node.yml
vendored
1
.github/workflows/node.yml
vendored
|
|
@ -68,6 +68,7 @@ jobs:
|
|||
- name: Install dependencies & build
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
run: |
|
||||
npm ci
|
||||
npm run build --if-present
|
||||
|
|
|
|||
3
.github/workflows/npm-audit-fix.yml
vendored
3
.github/workflows/npm-audit-fix.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
branches: ["main", "master", "stable27", "stable26", "stable25", "stable24"]
|
||||
|
||||
|
||||
name: npm-audit-fix-${{ matrix.branches }}
|
||||
|
||||
steps:
|
||||
|
|
@ -51,6 +51,7 @@ jobs:
|
|||
if: always()
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
run: |
|
||||
npm ci
|
||||
npm run build --if-present
|
||||
|
|
|
|||
Loading…
Reference in a new issue