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 1f10251 commit 17dca6aCopy full SHA for 17dca6a
.github/workflows/test.yml
@@ -10,9 +10,33 @@ permissions:
10
packages: write
11
12
jobs:
13
+ lint:
14
+ name: Lint and typecheck
15
+ runs-on: ubuntu-latest
16
+
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v4
20
21
+ - name: Setup Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: '20'
25
+ cache: 'yarn'
26
27
+ - name: Install dependencies
28
+ run: yarn install --frozen-lockfile
29
30
+ - name: TypeScript typecheck
31
+ run: yarn typecheck
32
33
+ - name: Lint
34
+ run: yarn lint
35
36
test-mongodb-backend:
37
name: Test with MongoDB backend
38
runs-on: ubuntu-latest
39
+ needs: lint
40
41
steps:
42
- name: Checkout code
0 commit comments