Skip to content

Commit bd0e808

Browse files
committed
adding automated testing
1 parent 2f979a5 commit bd0e808

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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: Linting
18+
run: npx standard
19+
20+
- name: Run tests
21+
run: npm run test

0 commit comments

Comments
 (0)