Skip to content

Add solutions for introductory NodeJS #9

Add solutions for introductory NodeJS

Add solutions for introductory NodeJS #9

Workflow file for this run

name: Control
on:
push:
branches:
- 'solution/frontend-backend-development'
paths:
- '**'
jobs:
test:
name: Tests on macos-latest
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: (npm install)
- run: (cp config-default.js config.js)
- run: (npm test)
coverage:
name: Tests & coverage on ubuntu-18.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: (npm install)
- run: (cp config-default.js config.js)
- run: (npm run coverage)