We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5658d6 commit a92bbdaCopy full SHA for a92bbda
1 file changed
.github/workflows/wrapper-js-ci.yml
@@ -54,8 +54,18 @@ jobs:
54
cache: yes
55
run-install: true
56
57
- - name: Linting
58
- run: ${{ inputs.runtime == 'vp' && 'vp' || 'bun' }} run lint
+ - name: Linting (Bun)
+ if: inputs.runtime == 'bun'
59
+ run: bun run lint
60
+
61
+ - name: Linting (Vite+)
62
+ if: inputs.runtime == 'vp'
63
+ run: vp run lint
64
- - name: Tests
- run: ${{ inputs.runtime == 'vp' && 'vp' || 'bun' }} run test${{ inputs.runtime == 'bun' && ':coverage' || '' }}
65
+ - name: Tests (Bun)
66
67
+ run: bun run test:coverage
68
69
+ - name: Tests (Vite+)
70
71
+ run: vp run test
0 commit comments