We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 569af38 commit 318f1d8Copy full SHA for 318f1d8
1 file changed
.github/workflows/main.yml
@@ -12,17 +12,26 @@ jobs:
12
steps:
13
- name: Checkout repository
14
uses: actions/checkout@v4
15
-
16
- - name: Setup Nodejs
17
- uses: actions/setup-node@v4
18
with:
19
- node-version: lts/*
+ fetch-depth: 0
20
21
- name: Setup pnpm
22
uses: pnpm/action-setup@v4
23
24
version: latest
25
+ - name: Setup Nodejs
+ uses: actions/setup-node@v4
+ with:
26
+ node-version: lts/*
27
+ cache: pnpm
28
+ registry-url: https://registry.npmjs.org
29
+
30
+ - name: Changelog
31
+ run: npx changelogithub
32
+ env:
33
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
34
35
- name: Install dependencies
36
run: pnpm install --frozen-lockfile
37
0 commit comments