Skip to content

Commit 2468fe9

Browse files
committed
Added GitHub Action to run tests
1 parent e045226 commit 2468fe9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Run Tests
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Install dependencies
9+
run: npm install
10+
- name: Run tests with Jest
11+
env:
12+
NIGHTFALL_API_KEY: ${{ secrets.NIGHTFALL_API_KEY }}
13+
run: npm run test

0 commit comments

Comments
 (0)