Skip to content

Merge pull request #1 from oates/patch-1 #76

Merge pull request #1 from oates/patch-1

Merge pull request #1 from oates/patch-1 #76

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Lint TS
run: npm run lint:ts
- name: Lint SCSS
run: npm run lint:scss
unit:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Unit Test
run: npm test -- --watch=false
e2e:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Start Dev Server
run: npm start &
- name: E2E Test
run: npm run cypress:run