Skip to content

Commit 5b0490b

Browse files
committed
feat: gitlab ci
1 parent f893158 commit 5b0490b

2 files changed

Lines changed: 35 additions & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"files.exclude": {
3-
".github": true,
43
"node_modules": true
54
},
65
"search.exclude": {

0 commit comments

Comments
 (0)