Skip to content

Commit f6891d0

Browse files
committed
wip
1 parent c46536f commit f6891d0

File tree

5 files changed

+24
-7059
lines changed

5 files changed

+24
-7059
lines changed

.github/workflows/npm-build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,14 @@ jobs:
2727
uses: actions/setup-node@v4
2828
with:
2929
node-version: '22.x'
30+
cache: 'npm'
3031

3132
- name: "Install npm dependencies"
32-
run: npm ci
33+
env:
34+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
35+
npm_config_audit: 'false'
36+
npm_config_fund: 'false'
37+
run: npm ci --no-audit --no-fund --no-progress
3338

3439
- name: "Build"
3540
run: npm run build

.github/workflows/npm-format-check.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@ jobs:
1515
uses: actions/setup-node@v4
1616
with:
1717
node-version: '22.x'
18+
cache: 'npm'
1819

1920
- name: "Install npm dependencies"
20-
run: npm ci
21+
env:
22+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
23+
npm_config_audit: 'false'
24+
npm_config_fund: 'false'
25+
run: npm ci --no-audit --no-fund --no-progress
2126

2227
- name: "Check code formatting"
2328
run: npm run format:check

.github/workflows/npm-lint.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@ jobs:
1717
uses: actions/setup-node@v4
1818
with:
1919
node-version: '22.x'
20+
cache: 'npm'
2021

2122
- name: "Install npm dependencies"
22-
run: npm ci
23+
env:
24+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
25+
npm_config_audit: 'false'
26+
npm_config_fund: 'false'
27+
run: npm ci --no-audit --no-fund --no-progress
2328

2429
- name: "Run linter"
2530
run: npm run lint

.github/workflows/phpunit.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,14 @@ jobs:
5151
- uses: actions/setup-node@v4
5252
with:
5353
node-version: '22.x'
54+
cache: 'npm'
5455

5556
- name: "Install dependencies"
56-
run: npm ci
57+
env:
58+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
59+
npm_config_audit: 'false'
60+
npm_config_fund: 'false'
61+
run: npm ci --no-audit --no-fund --no-progress
5762

5863
- name: "Build Frontend"
5964
run: npm run build

0 commit comments

Comments
 (0)