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
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [main]
branches: [main, vnext]
pull_request:

jobs:
Expand All @@ -23,10 +23,15 @@ jobs:
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test:coverage
run: npm run test
- name: Build
run: npm run build
- name: Verify CLI
run: |
chmod +x dist/index.js
node dist/index.js --version
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ npm-debug.log*

# Primer outputs
.primer/
readiness-report.html
Loading
Loading