Skip to content

Commit 51e6a8a

Browse files
committed
adding github actions for testing
1 parent b0b089f commit 51e6a8a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: tests
2+
on: [push, pull_request]
3+
4+
jobs:
5+
testing:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v1
9+
- name: Setup Environment (Using NodeJS 16.x)
10+
uses: actions/setup-node@v1
11+
with:
12+
node-version: 16.x
13+
14+
- name: Install dependencies
15+
run: npm install
16+
17+
- name: Run tests
18+
run: npm run test

0 commit comments

Comments
 (0)