We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16322c2 commit e8259e0Copy full SHA for e8259e0
.eslintignore
@@ -0,0 +1 @@
1
+/packages/*/dist/
.github/workflows/ci.yml
@@ -6,7 +6,21 @@ permissions:
6
contents: read
7
8
jobs:
9
+ lint:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ with:
14
+ persist-credentials: false
15
+ - name: Setup node
16
+ uses: actions/setup-node@v3
17
18
+ node-version: 18
19
+ cache: yarn
20
+ - run: yarn install
21
+ - run: yarn lint
22
build:
23
+ needs: lint
24
runs-on: ubuntu-latest
25
services:
26
postgres:
0 commit comments