Skip to content

Commit a0c9e06

Browse files
committed
fix: performance
1 parent f0ea576 commit a0c9e06

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ permissions:
1111
issues: write # to be able to comment on released issues
1212
pull-requests: write # to be able to comment on released pull requests
1313
id-token: write # to enable use of OIDC for trusted publishing and npm provenance
14-
14+
1515
jobs:
1616
publish:
1717
runs-on: ubuntu-latest
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
23+
- uses: actions/setup-node@v4
24+
with:
25+
node-version: '20'
26+
registry-url: 'https://registry.npmjs.org'
2327
- name: Install
2428
run: yarn install --frozen-lockfile
2529
- name: Build

0 commit comments

Comments
 (0)