Skip to content

Commit 25f0013

Browse files
committed
add ci pipeline
1 parent f922030 commit 25f0013

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/fmt-check.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Format Check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
fmt-check:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
13+
- name: Set up Node.js
14+
uses: actions/setup-node@v2
15+
with:
16+
node-version: '23'
17+
18+
- name: Install dev dependencies
19+
run: npm install --only=dev
20+
21+
- name: Run format check
22+
run: npm run fmt-check

0 commit comments

Comments
 (0)