We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f8b93d commit 8e5bb85Copy full SHA for 8e5bb85
1 file changed
.github/workflows/release.yml
@@ -1,5 +1,4 @@
1
name: "Release"
2
-
3
on:
4
schedule:
5
- cron: "0 0 * * 2,4"
@@ -19,17 +18,26 @@ jobs:
19
18
- name: Checkout
20
uses: actions/checkout@v4
21
with:
22
- node-version: 24
23
- cache: "yarn"
24
fetch-depth: 0
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
25
+ with:
26
+ node-version: 22
27
+ cache: "yarn"
28
29
- name: Install dependencies
30
run: yarn install --frozen-lockfile
31
32
- name: Lint
33
run: yarn lint
34
35
- name: Build package
36
run: yarn build
37
38
- name: Generate types
39
run: yarn generate:types
40
41
- name: Semantic release
42
env:
43
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
0 commit comments