We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17aa7b0 commit 3ff8cdcCopy full SHA for 3ff8cdc
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,13 @@
1
+name: CI
2
+on:
3
+ - push
4
+ - pull_request
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Install modules
11
+ run: yarn
12
+ - name: Run ESLint
13
+ run: yarn run eslint . --ext .js,.jsx,.ts,.tsx
0 commit comments