We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07ee46c commit 2d9564aCopy full SHA for 2d9564a
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,17 @@
1
+name: lint & typescript check
2
+
3
+on: push
4
5
+jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ defaults:
9
+ run:
10
+ working-directory: ./template
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Install dependencies
14
+ run: yarn
15
+ - run: mv _eslintrc.js .eslintrc.js && mv _prettierrc.js .prettierrc.js
16
+ - name: Lint code
17
+ run: yarn lint
0 commit comments