Archived
1
0
Fork 0

Setup GitHub actions workflow

This commit is contained in:
Ethanell 2020-08-18 13:19:05 +02:00 committed by flifloo
parent 70af322056
commit 345a384f7b

25
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup nodejs & npm
uses: actions/setup-node@v1
with:
node-version: "12"
- name: Install projetc dependecies
run: npm install
- name: Launch unitary test
run: npm test