Skip to content

Commit 4796d48

Browse files
committed
initial commit
0 parents  commit 4796d48

File tree

7 files changed

+2304
-0
lines changed

7 files changed

+2304
-0
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test
2+
on: [push]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
9+
- name: Setup Node.js
10+
uses: actions/setup-node@v3
11+
with:
12+
node-version: '16'
13+
14+
- name: Install dependencies
15+
run: npm ci
16+
17+
- name: Run tests with coverage
18+
run: npm run coverage
19+

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
target/**
2+
node_modules/
3+
coverage/

0 commit comments

Comments
 (0)