We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f893158 commit 5b0490bCopy full SHA for 5b0490b
2 files changed
.github/workflows/ci.yaml
@@ -0,0 +1,35 @@
1
+name: Pipeline
2
+
3
+on:
4
+ - push
5
6
+jobs:
7
+ check:
8
+ name: Source Revision
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ node-version: [24.x, 22.x]
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
+ cache: 'npm'
21
22
+ - name: Install Dependencies
23
+ run: npm ci
24
25
+ - name: Run Format Check
26
+ run: npm run format:check
27
28
+ - name: Run Lint Check
29
+ run: npm run lint:check
30
31
+ - name: Build
32
+ run: npm run build
33
34
+ - name: Run Tests
35
+ run: npm run test
.vscode/settings.json
@@ -1,6 +1,5 @@
{
"files.exclude": {
- ".github": true,
"node_modules": true
},
"search.exclude": {
0 commit comments