Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/.github/workflows/main.yml

25 lines
405 B
YAML

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