chore(deps): bump cookie and express in /front-end #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow tests front-end | |
name: Test front-end | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-front-end: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository, for access in the workflow | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
cd front-end | |
npm ci | |
- name: Run unit tests | |
run: | | |
cd front-end | |
npm test |