We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86af349 commit 2923ce6Copy full SHA for 2923ce6
1 file changed
.github/workflows/pr-lint-check.yml
@@ -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