We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0a7e1 commit 59f5bcfCopy full SHA for 59f5bcf
.github/workflows/release.yml
@@ -1,10 +1,23 @@
1
-name: Test
+name: Release
2
on:
3
release:
4
types: [created]
5
jobs:
6
+ run-test:
7
+ name: Just tests
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v4
12
+ with:
13
+ node-version: 24.x
14
+ - name: Install deps
15
+ run: npm i
16
+ - name: run test
17
+ run: npx vitest run
18
deploy:
19
name: Deploy on npm
20
+ needs: run-test
21
runs-on: ubuntu-latest
22
steps:
23
- name: Checkout repo
0 commit comments