Fix issues with PerformanceReport Page (commit data, hiding missing data) #33
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: PR Github Pages | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
# Install dependencies | |
- run: yarn install | |
# Analyze code for potential problems | |
# Run yarn prettier --check --write --config ./.prettierrc . if needed for prettier to write | |
- run: yarn prettier --check --config .prettierrc . | |
- run: yarn tsc --build | |
# Test | |
# - run: yarn test | |
# Compile | |
- run: yarn build | |
# Deploy | |
# - run: yarn deploy |