Skip to content

Changes how config management works in hiccup #50

Changes how config management works in hiccup

Changes how config management works in hiccup #50

Workflow file for this run

name: Tests
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
unit:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install dependencies
run: npm install
- name: Run tests
run: CI=true npm test
e2e:
name: End to End
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cypress run
uses: cypress-io/github-action@v4
with:
browser: chrome
build: npm run build
start: npx serve -s build -l 3000
wait-on: 'http://localhost:3000'