Skip to content

Commit 65bba55

Browse files
committed
fix(cI): semantic-release node latest lts
Semantic-release has been failing as [it requires latest Node LTS](https://github.com/semantic-release/semantic-release/blob/master/docs/support/node-version.md). Implements recommendations [here](https://github.com/semantic-release/semantic-release/blob/master/docs/recipes/ci-configurations/github-actions.md)
1 parent 64e1fb4 commit 65bba55

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@ jobs:
88
name: Release
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
with:
14+
fetch-depth: 0
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: "lts/*"
19+
- name: Install dependencies
20+
run: npm ci
1221
- name: Release
1322
env:
1423
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)