We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 191d778 commit 37fdf18Copy full SHA for 37fdf18
1 file changed
.github/workflows/publish.yml
@@ -14,9 +14,13 @@ jobs:
14
with:
15
node-version: 14
16
registry-url: https://registry.npmjs.org
17
- - run: npm add -g pnpm
18
- - run: pnpm i
19
- - run: pnpm t
20
- - run: npm publish
+ - name: Setup pnpm
+ run: npm add -g pnpm
+ - name: Install dependencies
+ run: pnpm i
21
+ - name: Test
22
+ run: pnpm t
23
+ - name: Publish
24
+ run: npm publish
25
env:
26
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments