fix single dataset visual bugs #210
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
# Workflow for running several tests for PRs and pushes to the main branch for | |
# data portal frontend code. | |
name: Frontend Tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'frontend/**' | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
- 'frontend/**' | |
defaults: | |
run: | |
working-directory: frontend/ | |
jobs: | |
# Runs several tests on the frontend codebase to check for code style, | |
# formatting, best practices, and run unit/integration tests. | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.8.x | |
- name: Install PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.9.0 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Setup pnpm cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies with PNPM | |
run: pnpm install --frozen-lockfile | |
working-directory: frontend | |
- name: Build GraphQL Types | |
run: pnpm build:codegen | |
working-directory: frontend/packages/data-portal | |
- name: ${{ matrix.name }} | |
run: ${{ matrix.run }} | |
# Run linters and tests as matrix strategies so that they: | |
# 1. Show up as separate GitHub checks. | |
# 2. So we can reuse the Node.js and PNPM installation steps | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: jest | |
run: pnpm -r test | |
- name: tsc | |
run: pnpm -r type-check |