Skip to content

Commit 8ac4a0e

Browse files
authored
chore: fix ci publishing (#748)
1 parent 0c5e4d1 commit 8ac4a0e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/nodejs.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ jobs:
3131
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
3232
runs-on: ubuntu-latest
3333
steps:
34+
- name: Checkout
35+
uses: actions/checkout@v4
36+
with:
37+
fetch-depth: 0 # fetch all history
38+
- name: Setup Node.js
39+
uses: actions/setup-node@v4
40+
with:
41+
node-version: lts/*
42+
cache: 'yarn'
43+
- name: Install Dependencies
44+
run: yarn install
45+
3446
- name: Create Release Pull Request or Publish
3547
id: changesets
3648
uses: changesets/action@v1

0 commit comments

Comments
 (0)