We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f163803 commit 6778948Copy full SHA for 6778948
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: Clinic CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ lint:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout Repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup Node
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 20
19
20
+ - name: Setup PNPM
21
+ uses: pnpm/action-setup@v2
22
23
+ version: 10
24
25
+ - name: Install Dependencies
26
+ run: pnpm install
27
28
+ - name: Run ESLint
29
+ run: pnpm lint
0 commit comments