Skip to content

Commit 6778948

Browse files
committed
feat: add CI setup for lint/test/doc checks
1 parent f163803 commit 6778948

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
23+
version: 10
24+
25+
- name: Install Dependencies
26+
run: pnpm install
27+
28+
- name: Run ESLint
29+
run: pnpm lint

0 commit comments

Comments
 (0)