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 9200eb6 commit 8b59e85Copy full SHA for 8b59e85
.github/workflows/ci.yml
.github/workflows/pr-lint-check.yml
@@ -0,0 +1,19 @@
1
+name: PR Lint Check
2
+
3
+on:
4
+ pull_request:
5
+ branches: [master]
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