Hammer/generic alerts #2596
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: dashboard | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/dashboard.yml' | |
- 'packages/dashboard/**' | |
- 'packages/react-components/**' | |
- 'packages/rmf-auth/**' | |
- 'packages/rmf-models/**' | |
- 'packages/api-client/**' | |
push: | |
branches: | |
- main | |
env: | |
CI: true | |
jobs: | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-22.04 | |
container: | |
image: ghcr.io/${{ github.repository }}/e2e | |
credentials: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: packages/dashboard | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup python | |
run: apt update && apt install -y python3-venv python-is-python3 | |
- name: bootstrap | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
uses: ./.github/actions/bootstrap | |
with: | |
package: rmf-dashboard | |
skip-build: true | |
- name: unit test | |
run: . /rmf_demos_ws/install/setup.bash && pnpm run test:coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
flags: dashboard |