ci: add checkout and verification steps to test workflows
Some checks failed
/ audit (push) Failing after 2s
ci-cd / build (push) Failing after 3s
ci / build (push) Failing after 2s
autofix / fix (push) Failing after 2s
security / audit (push) Failing after 2s
test / test (push) Successful in 3s

- Added actions/checkout@v4 step to cli-level1-tests.yml test and test-summary jobs
- Added actions/checkout@v4 and repository verification steps to test.yml
- Verification includes pwd, ls -la, and package.json check
- Ensures repository context is available before workflow execution
This commit is contained in:
2026-03-27 12:17:39 +01:00
parent b476d93867
commit de0bea7bb4
2 changed files with 16 additions and 0 deletions

View File

@@ -24,6 +24,8 @@ jobs:
python-version: [3.13.5]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v6
@@ -134,6 +136,8 @@ jobs:
if: always()
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v8

View File

@@ -9,6 +9,18 @@ jobs:
runs-on: debian
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Verify repository context
run: |
echo "Current working directory:"
pwd
echo "Files in directory:"
ls -la
echo "Looking for package.json:"
ls -la package.json || echo "package.json not found"
- run: |
echo "Runner OK"
hostname