Skip to content

Commit 8e5bb85

Browse files
committed
fix: yml update
1 parent 4f8b93d commit 8e5bb85

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: "Release"
2-
32
on:
43
schedule:
54
- cron: "0 0 * * 2,4"
@@ -19,17 +18,26 @@ jobs:
1918
- name: Checkout
2019
uses: actions/checkout@v4
2120
with:
22-
node-version: 24
23-
cache: "yarn"
2421
fetch-depth: 0
22+
23+
- name: Setup Node.js
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: 22
27+
cache: "yarn"
28+
2529
- name: Install dependencies
2630
run: yarn install --frozen-lockfile
31+
2732
- name: Lint
2833
run: yarn lint
34+
2935
- name: Build package
3036
run: yarn build
37+
3138
- name: Generate types
3239
run: yarn generate:types
40+
3341
- name: Semantic release
3442
env:
3543
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)