feat: try an action #1

Merged
naomi merged 3 commits from feat/actions into main 2025-01-23 00:43:35 -08:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit ca1e57f6b0 - Show all commits

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"
},