diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c1d0f1..b82d02e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,22 @@ jobs: - name: Test run: yarn test + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + cache: "yarn" + + - name: Install dependencies + run: yarn install --immutable + + - name: Lint + run: yarn lint + build: runs-on: ubuntu-latest