Skip to content

Commit aa228bc

Browse files
committed
chore: update CI
1 parent 8553e63 commit aa228bc

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

.github/mergify.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ pull_request_rules:
66
actions:
77
merge:
88
method: squash
9-
- name: automatic merge for Renovate pull requests (except major)
9+
- name: automatic merge for Renovate pull requests
1010
conditions:
1111
- author=renovate[bot]
12-
- head~=^(?!major-)
12+
- and:
13+
- head~=^(?!major-)
14+
- -title~=update dependency @types\/node
1315
actions:
1416
merge:
1517
method: squash

.github/workflows/github-pages.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12+
- uses: pnpm/action-setup@v2
13+
with:
14+
version: 7.14.2
1215
- uses: actions/setup-node@v3
1316
with:
1417
node-version: 16
15-
cache: yarn
16-
- run: yarn
17-
- run: yarn page build
18+
cache: pnpm
19+
- run: pnpm install
20+
- run: pnpm page build
1821
- uses: peaceiris/actions-gh-pages@v3
1922
with:
2023
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pull-request.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ on:
55

66
jobs:
77
code:
8-
uses: justland/.github/.github/workflows/yarn2-library-verify-linux.yml@main
8+
uses: unional/.github/.github/workflows/pnpm-verify.yml@main
9+
secrets: inherit
10+
with:
11+
node-version: "[18]"

.husky/commit-msg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
yarn commitlint --edit $1
2+
pnpm commitlint --edit $1

0 commit comments

Comments
 (0)