Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"Bash(git stash*)",
"Bash(git merge*)",
"Bash(git rebase*)",
"Bash(npx playwright*)",
"Bash(npx vitest*)",
"Bash(bunx playwright*)",
"Bash(bunx vitest*)",
"Bash(ls *)",
"Bash(dir *)",
"Bash(pwd)",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2

- name: Authenticate to GitHub Packages (npm)
- name: Authenticate to GitHub Packages
run: |
echo "@itenium-forge:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=${{ secrets.NUGET_AUTH_TOKEN }}" >> .npmrc
Expand All @@ -87,7 +87,7 @@ jobs:
run: bun audit --production || true

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
run: bunx playwright install --with-deps chromium

- name: Run E2E tests
run: bun run test:e2e
Expand Down
2 changes: 1 addition & 1 deletion Itenium.SkillForge/frontend/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cd Itenium.SkillForge/frontend && npx lint-staged
cd Itenium.SkillForge/frontend && bunx lint-staged

# Backend: check formatting on staged .cs files
if git diff --cached --name-only | grep -q '\.cs$'; then
Expand Down
4 changes: 2 additions & 2 deletions Itenium.SkillForge/frontend/e2e/global-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export default async function globalSetup() {
'Option 1 - Use Docker (requires GitHub Packages auth):\n' +
' $env:NUGET_USER="your-github-username"\n' +
' $env:NUGET_TOKEN="your-github-pat-with-read:packages"\n' +
' npm run test:e2e\n\n' +
' bun run test:e2e\n\n' +
'Option 2 - Use locally running backend (faster for local dev):\n' +
' # Start the backend manually first, then:\n' +
' $env:BACKEND_URL="https://localhost:5001"\n' +
' npm run test:e2e',
' bun run test:e2e',
);
}

Expand Down
2 changes: 1 addition & 1 deletion Itenium.SkillForge/frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default defineConfig({
},
],
webServer: {
command: 'npm run dev -- --mode e2e',
command: 'bun run dev -- --mode e2e',
url: 'http://localhost:5173',
reuseExistingServer: !process.env.CI,
timeout: 120000,
Expand Down
Loading