move start times from 18:30 to 19:00 for most evening slots #1183
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
name: Install and Test | |
on: | |
push: | |
pull_request: | |
branches: | |
- develop | |
- production | |
jobs: | |
test-client-app: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./client-course-schedulizer | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: update-npm-version | |
run: | | |
npm install -g npm@latest | |
- name: Install npm dependencies | |
run: | | |
npm ci | |
working-directory: ${{env.working-directory}} | |
- name: Run tests | |
run: | | |
npm test | |
working-directory: ${{env.working-directory}} |