This commit is contained in:
konnorrogers
2024-09-18 16:37:20 -04:00
parent ce0be350ca
commit 335010cd95
2 changed files with 4 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ jobs:
run: npm run build
- name: Lint
run: npm run prettier && npm run lint
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run CSR tests
# FAIL_FAST to fail on first failing test.
run: FAIL_FAST="true" CSR_ONLY="true" npm run test
@@ -52,6 +54,8 @@ jobs:
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build
run: npm run build
- name: Run CSR tests

View File

@@ -47,7 +47,6 @@
"start:alpha": "node scripts/build.js --alpha --develop",
"publish-alpha-cdn": "./publish-alpha-cdn.sh",
"create": "plop --plopfile scripts/plop/plopfile.js",
"prepare": "playwright install --with-deps",
"test": "web-test-runner --group default",
"test:component": "web-test-runner -- --watch --group",
"test:watch": "web-test-runner --watch --group default",