Skip to content

Commit 9e7b42c

Browse files
committed
enforce linting via ci workflow
1 parent c17caad commit 9e7b42c

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,20 @@ jobs:
4141
echo "Skipping version verification - not a tag event"
4242
fi
4343
44+
lint:
45+
runs-on: ubuntu-latest
46+
steps:
47+
- uses: actions/checkout@v6
48+
- uses: actions/setup-node@v6
49+
with:
50+
node-version: 24
51+
- name: Install dependencies
52+
run: yarn install --ignore-scripts
53+
- name: Run lint
54+
run: yarn lint
55+
4456
build:
45-
needs: [verify-version]
57+
needs: [verify-version, lint]
4658
runs-on: ${{ matrix.os }}
4759
strategy:
4860
fail-fast: false

0 commit comments

Comments
 (0)