Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.

Commit 0ad6398

Browse files
committed
ci: added testing and lint pass
1 parent 8217304 commit 0ad6398

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/node-ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Node CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
formatting:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- run: npm install --frozen-lockfile
13+
- run: npm run lint
14+
tests:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- run: npm install --frozen-lockfile
19+
- run: npm run test

0 commit comments

Comments
 (0)