Skip to content

Commit bf0c599

Browse files
committed
add basic test and gh action
1 parent 7d000b7 commit bf0c599

7 files changed

Lines changed: 888 additions & 557 deletions

File tree

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build-test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Check out
11+
uses: actions/checkout@v4
12+
- name: Set up Node
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version: '20.x'
16+
cache: 'npm'
17+
- run: npm ci
18+
- run: npm run build
19+
- run: npm run test:ci

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ dist
1212
build
1313
*.local
1414
.env
15+
coverage
1516

1617
# Editor directories and files
1718
.idea

0 commit comments

Comments
 (0)