Skip to content

Commit 228b6d2

Browse files
authored
Merge pull request #74 from BeeInventor/develop
chore: upgrade build package node version
2 parents c6601fa + e2e2542 commit 228b6d2

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/release-package.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
15-
- run: yarn install --frozen-lockfile
14+
node-version: 20
15+
- uses: pnpm/action-setup@v4
16+
with:
17+
version: 9
1618

1719
publish-gpr:
1820
needs: build
@@ -24,11 +26,13 @@ jobs:
2426
- uses: actions/checkout@v3
2527
- uses: actions/setup-node@v3
2628
with:
27-
node-version: 16
29+
node-version: 20
2830
registry-url: https://npm.pkg.github.com/
2931
scope: '@beeinventor'
30-
- run: yarn install --frozen-lockfile
31-
- run: yarn build
32+
- uses: pnpm/action-setup@v4
33+
with:
34+
version: 9
35+
- run: pnpm build
3236
- run: npm publish
3337
env:
3438
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)