Skip to content

Commit d7b93f8

Browse files
added new build and test test workflow
1 parent 9288b4b commit d7b93f8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Build and Test'
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Use Node.js 16
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: 16.x
16+
- run: npm ci
17+
- run: npm test
18+

0 commit comments

Comments
 (0)