Skip to content

Commit 2923ce6

Browse files
author
v_guanglwen
committed
feat: pr lint
1 parent 86af349 commit 2923ce6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/pr-lint-check.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: PR Lint Check
2+
3+
on:
4+
pull_request:
5+
branches: feat-wzy-cs
6+
7+
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up Node.js
13+
uses: actions/setup-node@v2
14+
with:
15+
node-version: '16'
16+
- name: Install dependencies
17+
run: npm install
18+
- name: Run lint
19+
run: npm run lint

0 commit comments

Comments
 (0)