We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b28bb1 commit eb8f8b7Copy full SHA for eb8f8b7
1 file changed
.github/workflows/publish.yml
@@ -5,14 +5,26 @@ on:
5
- published
6
7
jobs:
8
+ tests:
9
+ uses: ./.github/workflows/tests.yml
10
+
11
publish:
12
runs-on: ubuntu-latest
13
14
steps:
15
- uses: actions/checkout@v4
- - uses: ./.github/workflows/tests.yml
16
+ - name: Set up Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 22
20
21
+ - name: Install dependencies
22
+ run: |
23
+ npm install
24
25
- name: build
26
run: npm run build
27
28
- name: publish
29
env:
30
NPM_TOKEN: ${{ secrets.WORKFLOW_AUTO_PUBLISH }}
0 commit comments