diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 000000000..050c39538 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +/packages/*/dist/ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab5bef47b..ed75cc395 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: