We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c17caad commit 9e7b42cCopy full SHA for 9e7b42c
1 file changed
.github/workflows/ci.yml
@@ -41,8 +41,20 @@ jobs:
41
echo "Skipping version verification - not a tag event"
42
fi
43
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
+
56
build:
- needs: [verify-version]
57
+ needs: [verify-version, lint]
58
runs-on: ${{ matrix.os }}
59
strategy:
60
fail-fast: false
0 commit comments