Bump follow-redirects from 1.13.1 to 1.15.4 in /v2/ui #172
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
name: CI | |
on: | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build_dev: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: sudo npm install -g @angular/cli | |
- name: Check dev build | |
run: cd v2 && make dev | |
build_prod: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: sudo npm install -g @angular/cli | |
- name: Check prod build | |
run: cd v2 && make prod | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: sudo npm install -g @angular/cli | |
- name: Check unit tests | |
run: cd v2 && make test |