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 dfc8d44 + 77a024a commit 37981bbCopy full SHA for 37981bb
.github/workflows/lint.yml
@@ -0,0 +1,32 @@
1
+name: Lint Code
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - develop
7
+ pull_request:
8
9
10
11
+jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v3
18
19
+ - name: Set up Node.js
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ node-version: '20'
23
+ cache: 'pnpm'
24
25
+ - name: Install pnpm
26
+ run: npm install -g pnpm
27
28
+ - name: Install dependencies
29
+ run: pnpm install
30
31
+ - name: Run linter
32
+ run: pnpm lint
0 commit comments