Skip to content

Project migration

Project migration #2

Workflow file for this run

name: Test Runner
on:
workflow_dispatch:
pull_request:
jobs:
run-tests:

Check failure on line 8 in .github/workflows/pr-test.yml

View workflow run for this annotation

GitHub Actions / Test Runner

Invalid workflow file

The workflow is not valid. .github/workflows/pr-test.yml (Line: 8, Col: 3): The workflow must contain at least one job with no dependencies.
name: Run Tests
runs-on: ubuntu-latest
needs: install-dependencies
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Download node_modules artifact
uses: actions/download-artifact@v3
with:
name: node_modules
path: node_modules
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Run tests
run: yarn test
- name: Test Report
uses: dorny/test-reporter@v1
if: success()
with:
name: Tests
path: reports/junit.xml
reporter: jest-junit
- name: Test Summary
uses: test-summary/action@v2
with:
paths: 'reports/junit.xml'