- 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
29 lines
528 B
YAML
29 lines
528 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
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
|
|
whoami
|
|
pwd
|