We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bebcd4 commit 1f2f1d0Copy full SHA for 1f2f1d0
2 files changed
.github/workflows/ci.yml
@@ -49,9 +49,6 @@ jobs:
49
- run: npm test
50
env:
51
AMQPS_URL: amqps://localhost?insecure
52
- - run: npm run lint
53
- - run: npm run format:check
54
- - run: npm run typecheck
55
56
test-browser:
57
runs-on: ubuntu-latest
.github/workflows/lint.yml
@@ -0,0 +1,25 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ lint:
12
+ runs-on: ubuntu-latest
13
+ timeout-minutes: 10
14
+ steps:
15
+ - uses: actions/checkout@v6
16
+ - name: Use Node.js
17
+ uses: actions/setup-node@v6
18
+ with:
19
+ node-version: 24.x
20
+ - run: npm install
21
+ env:
22
+ PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
23
+ - run: npm run lint
24
+ - run: npm run format:check
25
+ - run: npm run typecheck
0 commit comments