Skip to content

try6

try6 #13

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
call-setup:
uses: ./.github/workflows/setup.yml

Check failure on line 13 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 13, Col: 11): Input node_version is required, but not provided while calling.
test:
runs-on: ubuntu-latest
needs: call-setup # Ensure this job starts after the setup job
steps:
- name: Checkout code # You need to checkout code again because each job starts fresh
uses: actions/checkout@v3
- name: Run tests
run: pnpm test # Assuming pnpm and node_modules are correctly configured to be available