Skip to content

Commit 7a86817

Browse files
author
Loïc Mangeonjean
committed
fix: fix ci
1 parent 2d6cdb4 commit 7a86817

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/check_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616
- uses: actions/setup-node@v3
1717
- run: npm ci
18-
- run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD
18+
- run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
1919
check:
2020
name: Check build
2121
runs-on: ubuntu-latest
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Node.js
2929
uses: actions/setup-node@v3
3030
with:
31-
node-version: 16.x
31+
node-version: 18.13.0
3232
- name: Install dependencies
3333
run: npm ci
3434
- name: Build

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Node.js
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 18.x
16+
node-version: 18.13.0
1717
- name: Install dependencies
1818
run: npm ci
1919
- name: Build

0 commit comments

Comments
 (0)