We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc2856c + adf349c commit 971b9b0Copy full SHA for 971b9b0
.github/workflows/lint.yml
@@ -0,0 +1,30 @@
1
+
2
+name: Lint
3
4
+on:
5
+ pull_request:
6
+ push:
7
+ branches: [ "main" ]
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ lint:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Use Node.js
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version: '20.x'
21
+ cache: 'yarn'
22
23
+ - name: Install dependencies
24
+ run: yarn install --immutable --immutable-cache --check-cache
25
26
+ - name: Build
27
+ run: yarn build
28
29
+ - name: Lint
30
+ run: yarn lint
0 commit comments