Improve build times for tests and lint (#5193)
* test build skip * reset file
This commit is contained in:
parent
6713c80f31
commit
f1439d7fcb
3
.github/workflows/lint.yaml
vendored
3
.github/workflows/lint.yaml
vendored
@ -61,6 +61,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Install collector dependencies
|
- name: Install collector dependencies
|
||||||
run: cd collector && yarn install --frozen-lockfile
|
run: cd collector && yarn install --frozen-lockfile
|
||||||
|
env:
|
||||||
|
PUPPETEER_SKIP_DOWNLOAD: "true"
|
||||||
|
SHARP_IGNORE_GLOBAL_LIBVIPS: "true"
|
||||||
|
|
||||||
- name: Lint server
|
- name: Lint server
|
||||||
run: cd server && yarn lint:check
|
run: cd server && yarn lint:check
|
||||||
|
|||||||
3
.github/workflows/run-tests.yaml
vendored
3
.github/workflows/run-tests.yaml
vendored
@ -65,6 +65,9 @@ jobs:
|
|||||||
- name: Install collector dependencies
|
- name: Install collector dependencies
|
||||||
if: steps.cache-collector.outputs.cache-hit != 'true'
|
if: steps.cache-collector.outputs.cache-hit != 'true'
|
||||||
run: cd collector && yarn install --frozen-lockfile
|
run: cd collector && yarn install --frozen-lockfile
|
||||||
|
env:
|
||||||
|
PUPPETEER_SKIP_DOWNLOAD: "true"
|
||||||
|
SHARP_IGNORE_GLOBAL_LIBVIPS: "true"
|
||||||
|
|
||||||
- name: Setup environment and Prisma
|
- name: Setup environment and Prisma
|
||||||
run: yarn setup:envs && yarn prisma:setup
|
run: yarn setup:envs && yarn prisma:setup
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user