Skip to content

Merge pull request #20 from rafgugi/restyling #39

Merge pull request #20 from rafgugi/restyling

Merge pull request #20 from rafgugi/restyling #39

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
cache: npm
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test