We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a95e6c commit 389f4d8Copy full SHA for 389f4d8
1 file changed
.github/workflows/pr.yml
@@ -0,0 +1,13 @@
1
+name: PR check
2
+
3
+on: [pull_request]
4
5
+jobs:
6
+ check:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: install ESLint
10
+ run: npm install -g eslint
11
+ - uses: actions/checkout@v3
12
+ - name: run ESLint
13
+ run: eslint -c .eslintrc.json '**/*.js'
0 commit comments