Skip to content

Commit 9dafc6d

Browse files
committed
Add CI
1 parent 201ec71 commit 9dafc6d

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/check.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: [push, pull_request]
2+
jobs:
3+
check:
4+
runs-on: ubuntu-latest
5+
steps:
6+
- name: Checkout
7+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
8+
9+
- name: Setup Node.js
10+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
11+
with:
12+
node-version: "24.11.1"
13+
cache: "npm"
14+
15+
- name: Check
16+
run: npm ci

0 commit comments

Comments
 (0)