Upgrade to Angular 13 #2087
Workflow file for this run
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
# The purpose of this workflow file is to make sure the app | |
# builds successfully as well as to check whether it passes | |
# the linter and the tests | |
name: Setup Builds and Tests | |
on: | |
push: | |
branches: [master, release] | |
pull_request: | |
branches: [master, release] | |
jobs: | |
linux-setup-and-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Note: This step is necessary inclusion for the project to work on node 16. | |
# Please refer to the Angular 13 PR for more information | |
# Angular 13 PR: https://github.com/CATcher-org/CATcher/pull/1249 | |
- name: Use npm 7 | |
run: npm i -g npm@7 --registry=https://registry.npmjs.org | |
- run: npm install | |
- run: npm update | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: npm run lint | |
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js" | |
macos-setup-and-tests: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Note: This step is necessary inclusion for the project to work on node 16. | |
# Please refer to the Angular 13 PR for more information | |
# Angular 13 PR: https://github.com/CATcher-org/CATcher/pull/1249 | |
- name: Use npm 7 | |
run: npm i -g npm@7 --registry=https://registry.npmjs.org | |
- run: npm install | |
- run: npm update | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: npm run lint | |
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js" || npm test -- "--karma-config=./tests/karma.ci.conf.js" | |
# retry tests once, in case they timed out on Mac OS | |
windows-setup-and-tests: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Note: This step is necessary inclusion for the project to work on node 16. | |
# Please refer to the Angular 13 PR for more information | |
# Angular 13 PR: https://github.com/CATcher-org/CATcher/pull/1249 | |
- name: Use npm 7 | |
run: npm i -g npm@7 --registry=https://registry.npmjs.org | |
- run: npm install | |
- run: npm update | |
- run: npm run lint | |
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js" |