We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f70b18 commit 45f5174Copy full SHA for 45f5174
1 file changed
.github/workflows/main.yml
@@ -24,11 +24,10 @@ jobs:
24
with:
25
node-version: latest
26
cache: pnpm
27
- - name: Install 🔩
28
- run: pnpm i --frozen-lockfile
29
- - name: Build 🔧
30
- if: github.ref != 'refs/heads/main'
31
- run: pnpm build
+ - name: Install && Build 🔩
+ run: |
+ pnpm i --frozen-lockfile
+ pnpm build
32
- name: Publish 📰
33
uses: JS-DevTools/npm-publish@v2.2.1
34
if: github.ref == 'refs/heads/main'
0 commit comments