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 a028796 commit 34e48c5Copy full SHA for 34e48c5
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: Lint & Type Check
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ analyse:
11
+ runs-on: ubuntu-latest
12
13
+ env:
14
+ SKIP_YARN_COREPACK_CHECK: 0
15
16
+ steps:
17
+ - uses: actions/checkout@v3
18
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ node-version: 'lts/*'
23
+ cache: 'yarn'
24
25
+ - name: Install dependencies
26
+ run: yarn install
27
28
+ - name: Lint JS Code (ESLint)
29
+ run: yarn run lint
30
31
+ - name: Typescript Type Checking (tsc)
32
+ run: yarn run typecheck
0 commit comments