We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff5a839 commit 6b9c56cCopy full SHA for 6b9c56c
.github/workflows/npm-publish-stable.yml
@@ -45,7 +45,7 @@ jobs:
45
runs-on: ubuntu-latest
46
steps:
47
- uses: actions/checkout@v3
48
- - name: Cache node modules
+ - name: 💾 Fetch Cache
49
id: cache-yarn
50
uses: actions/cache@v3
51
env:
@@ -57,7 +57,11 @@ jobs:
57
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', '**/package.json') }}
58
restore-keys: |
59
${{ runner.os }}-yarn-
60
- - run: yarn test
+ - name: 🔨 Build
61
+ run: yarn build
62
+
63
+ - name: 🧪 Test
64
+ run: yarn test
65
66
publish-gpr:
67
needs: build
@@ -80,6 +84,10 @@ jobs:
80
84
81
85
82
86
83
- - run: yarn publish-stable
87
88
89
90
+ - run: yarn release-stable
91
+ name: 🚀 Release Stable
92
93
NODE_AUTH_TOKEN: ${{secrets.NPM_ACCESS_TOKEN}}
0 commit comments