We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89cc993 commit 52911b5Copy full SHA for 52911b5
1 file changed
.github/workflows/publish-to-npm-on-tag.yml
@@ -16,6 +16,19 @@ jobs:
16
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
17
with:
18
fetch-depth: 2
19
+
20
+ - name: Set up Node.js
21
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
22
+ with:
23
+ cache: npm
24
+ node-version-file: '.nvmrc'
25
26
+ - name: Install dependencies
27
+ run: npm ci
28
29
+ - name: Build
30
+ run: npm run build
31
32
- name: Publish
33
env:
34
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
0 commit comments