Skip to content

Commit

Permalink
ci: add lint job (brianc#3079)
Browse files Browse the repository at this point in the history
* ci: add lint job

* rebuild

* Revert "rebuild"

This reverts commit d330184.

* mad debugging

* wtf

* add eslintignore

* remove git status

---------

Co-authored-by: alxndrsn <alxndrsn>
  • Loading branch information
alxndrsn committed Oct 19, 2023
1 parent 16322c2 commit e8259e0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/packages/*/dist/
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,21 @@ permissions:
contents: read

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- run: yarn install
- run: yarn lint
build:
needs: lint
runs-on: ubuntu-latest
services:
postgres:
Expand Down

0 comments on commit e8259e0

Please sign in to comment.