Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/deploy-gates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- run: npm ci
- run: npm run lint || echo "::warning::lint script not defined, skipping"
- run: npx tsc --noEmit
- run: npm run typecheck
- run: npm run lint:baseline

unit-tests:
name: Gate 2 - Unit Tests
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Run Playwright smoke tests
run: |
if [ -d "e2e" ] || [ -d "tests/e2e" ] || [ -d "playwright" ]; then
npx playwright test --grep "@smoke" --project=chromium || npx playwright test --project=chromium
npm run test:e2e:smoke
else
echo "::warning::No e2e folder found, skipping (will be added in future PR)"
fi
Expand Down
Loading