This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
Switch v2 Monarch UI to use api-v2 hostname #90
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: Test Pull Request | |
# when someone submits a pull request | |
on: pull_request | |
# make sure tests pass and app can build successfully | |
jobs: | |
test-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- name: Install packages | |
run: npm install | |
- name: Test code | |
run: npm run test:unit | |
- name: Lint code | |
run: npm run lint | |
- name: Build app | |
run: npm run build |