Loosen dependency restrictions #24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Test Action Locally | |
| "on": | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| test-build-only: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Test build without deployment | |
| uses: ./ | |
| with: | |
| files: | | |
| README.md | |
| ACTION.md | |
| CHANGELOG.md | |
| title: 'Microdocs Test' | |
| deploy: false | |
| output: 'test-output.html' | |
| - name: Verify output | |
| run: | | |
| if [ -f "test-output.html" ]; then | |
| echo "✅ Output file created successfully" | |
| ls -lh test-output.html | |
| else | |
| echo "❌ Output file not found" | |
| exit 1 | |
| fi |