Skip to content

Commit e8259e0

Browse files
authored
ci: add lint job (brianc#3079)
* ci: add lint job * rebuild * Revert "rebuild" This reverts commit d330184. * mad debugging * wtf * add eslintignore * remove git status --------- Co-authored-by: alxndrsn <alxndrsn>
1 parent 16322c2 commit e8259e0

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Diff for: .eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/packages/*/dist/

Diff for: .github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@ permissions:
66
contents: read
77

88
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+
with:
18+
node-version: 18
19+
cache: yarn
20+
- run: yarn install
21+
- run: yarn lint
922
build:
23+
needs: lint
1024
runs-on: ubuntu-latest
1125
services:
1226
postgres:

0 commit comments

Comments
 (0)