Skip to content

Split reports by core project #6

Split reports by core project

Split reports by core project #6

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- if: runner.debug == '1'
uses: mxschmitt/action-tmate@v3
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: yarn
cache-dependency-path:
- "app/yarn.lock"

Check failure on line 23 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / Run tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 23, Col: 13): A sequence was not expected

Check failure on line 23 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / Run tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 23, Col: 13): A sequence was not expected
- "data/yarn.lock"
- name: Install /data packages
run: yarn install
working-directory: ./data
- name: Run /data tests
run: yarn test
working-directory: ./data
- name: Install /app packages
run: yarn install
working-directory: ./app
- name: Run /app tests
run: yarn test
working-directory: ./app