chore(deps-dev): bump globals from 17.11.0 to 17.12.0 (#125) #209
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: Integration Test | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| integration-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Test node script directly | |
| run: node src/index.js | |
| env: | |
| INPUT_RESULTS_JSON_PATH: sample-scan-results/scanresults-generic.json | |
| - name: Show generated markdown files | |
| run: | | |
| echo "Generated files:" | |
| ls -la twistlock*.md | |
| echo "" | |
| echo "=== Summary Table ===" | |
| cat twistlock-summary-table.md | |
| echo "" | |
| echo "=== Vulnerability Table ===" | |
| cat twistlock-vulnerability-table.md | |
| echo "" | |
| echo "=== Compliance Table ===" | |
| cat twistlock-compliance-table.md | |
| echo "" | |
| echo "=== Compliance Summary Table ===" | |
| cat twistlock-compliance-summary-table.md | |
| - name: Write to job summary | |
| run: | | |
| cat twistlock-summary-table.md >> $GITHUB_STEP_SUMMARY | |
| cat twistlock-vulnerability-table.md >> $GITHUB_STEP_SUMMARY | |
| cat twistlock-compliance-table.md >> $GITHUB_STEP_SUMMARY | |
| cat twistlock-compliance-summary-table.md >> $GITHUB_STEP_SUMMARY |