We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b8dd4f commit 5f518e3Copy full SHA for 5f518e3
2 files changed
.github/workflows/checks.yml
@@ -11,7 +11,7 @@ jobs:
11
- name: Checkout the repository
12
uses: actions/checkout@v3
13
- name: Check editorconfig
14
- uses: editorconfig-checker/action-editorconfig-checker@v1
+ uses: editorconfig-checker/action-editorconfig-checker@main
15
package-json:
16
runs-on: ubuntu-latest
17
name: package.json
.github/workflows/commit.yml
@@ -10,5 +10,16 @@ jobs:
10
with:
fetch-depth: 0
+ - name: Install pnpm
+ uses: pnpm/action-setup@v2
+ with:
+ version: 7
+ - name: Install Node.js
18
+ uses: actions/setup-node@v3
19
20
+ node-version: 16
21
+ cache: 'pnpm'
22
+ - name: Install dependencies
23
+ run: pnpm install
24
- name: Run commitlint
- uses: wagoid/commitlint-github-action@v5
25
+ run: pnpm commitlint --from=HEAD~1
0 commit comments