fix: skip the cdn tests in ci
Some checks failed
Node.js CI / Lint and Test (22.x) (pull_request) Failing after 2m37s

This commit is contained in:
Naomi Carrigan 2025-01-23 00:34:44 -08:00
parent 926a92bbb0
commit ca1e57f6b0
Signed by: naomi
SSH Key Fingerprint: SHA256:rca1iUI2OhAM6n4FIUaFcZcicmri0jgocqKiTTAfrt8
2 changed files with 2 additions and 1 deletions

View File

@ -38,4 +38,4 @@ jobs:
run: pnpm run build
- name: Run Tests
run: pnpm run test
run: pnpm run test:ci

View File

@ -9,6 +9,7 @@
"start": "next start",
"lint": "eslint src test --max-warnings 0",
"test": "op run --env-file=do.env --no-masking -- vitest run --coverage",
"test:ci": "vitest run --coverage --exclude=test/cdn.spec.ts",
"koikatsu": "op run --env-file=do.env --no-masking -- tsx koikatsu.ts",
"scan": "SONAR_TOKEN='op://Environment Variables - Development/SonarCloud/portfolio' op run -- sonar-scanner -Dsonar.organization=nhcarrigan -Dsonar.projectKey=nhcarrigan_portfolio -Dsonar.sources=. -Dsonar.host.url=https://sonarcloud.io"
},