ci: add checkout and verification steps to test workflows
- 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:
@@ -24,6 +24,8 @@ jobs:
|
|||||||
python-version: [3.13.5]
|
python-version: [3.13.5]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
@@ -134,6 +136,8 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v8
|
uses: actions/download-artifact@v8
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,18 @@ jobs:
|
|||||||
runs-on: debian
|
runs-on: debian
|
||||||
|
|
||||||
steps:
|
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: |
|
- run: |
|
||||||
echo "Runner OK"
|
echo "Runner OK"
|
||||||
hostname
|
hostname
|
||||||
|
|||||||
Reference in New Issue
Block a user