Skip to content

Commit 0fdf4dc

Browse files
authored
Merge pull request #3 from JavaZeroo/codex/utilize-ci/cd-for-project-stability
Add basic test setup and CI
2 parents 180e643 + 32341ec commit 0fdf4dc

File tree

6 files changed

+2836
-91
lines changed

6 files changed

+2836
-91
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [ main ]
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: '20'
16+
cache: 'npm'
17+
- run: npm install
18+
- run: npm test
19+
env:
20+
CI: true

0 commit comments

Comments
 (0)