We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ruleset.json
1 parent c7fa214 commit db6365bCopy full SHA for db6365b
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,38 @@
1
+name: CI Check
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ validate:
15
+ name: Lint, Typecheck, and Test
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - name: Checkout Repository
20
+ uses: actions/checkout@v4
21
22
+ - name: Setup Node.js
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: '22'
26
+ cache: 'npm'
27
28
+ - name: Install Dependencies
29
+ run: npm ci
30
31
+ - name: Run TypeScript Compiler Check
32
+ run: npx tsc --noEmit
33
34
+ - name: Run ESLint
35
+ run: npm run lint
36
37
+ - name: Run Jest Tests
38
+ run: npm run test -- --passWithNoTests
.gitignore
@@ -3,6 +3,7 @@
.DS_Store
.agents
skills-lock.json
+ruleset.json
# Xcode
#
0 commit comments