Github action for Jest (#26)

This commit is contained in:
rgossiaux
2021-12-25 01:27:54 -08:00
committed by GitHub
parent 237236f8d7
commit 4b4b6eba4e

18
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Jest
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test