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 eda9694 + 44768a0 commit 0b46205Copy full SHA for 0b46205
.github/workflows/ci.yaml
@@ -0,0 +1,23 @@
1
+name: CI
2
+on:
3
+ pull_request:
4
+ branches: ['main']
5
+jobs:
6
+ lint-and-test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout Code
10
+ uses: actions/checkout@v4
11
+ - name: Setup PNPM
12
+ uses: pnpm/action-setup@v4
13
+ - name: Setup Node.js
14
+ uses: actions/setup-node@v4
15
+ with:
16
+ cache: 'pnpm'
17
+ node-version-file: '.nvmrc'
18
+ - name: Install dependencies
19
+ run: pnpm install --frozen-lockfile
20
+ - name: Lint
21
+ run: pnpm lint
22
+ - name: Test
23
+ run: pnpm test
.gitignore
@@ -69,3 +69,6 @@ packages/runtime-core/lib/
69
# storybook
70
*storybook.log
71
storybook-static
72
+
73
+# claude
74
+.claude/settings.local.json
0 commit comments