We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4548490 commit 0f4b538Copy full SHA for 0f4b538
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,23 @@
1
+name: Lint and Prettier
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
+ pull_request:
8
9
10
11
+jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '22'
20
21
+ - run: npm ci
22
+ - run: npx eslint .
23
+ - run: npx prettier --check .
0 commit comments