fix warning message #211
Workflow file for this run
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: "Pull Request Verification" | |
| on: | |
| pull_request: | |
| paths-ignore: [ '*.md' ] | |
| branches: | |
| - master | |
| - '**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: 'npm' | |
| - run: | | |
| npm install | |
| npm run all | |
| - name: Check dist is up to date | |
| run: | | |
| if [ -n "$(git diff --name-only dist/)" ]; then | |
| echo "::error::dist/index.js is out of date. Run 'npm run all' and commit the result." | |
| git diff --stat dist/ | |
| exit 1 | |
| fi | |
| test-inline: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./ | |
| id: filter | |
| with: | |
| filters: | | |
| error: | |
| - not_existing_path/**/* | |
| any: | |
| - "**/*" | |
| - name: filter-test | |
| if: steps.filter.outputs.any != 'true' || steps.filter.outputs.error == 'true' | |
| run: exit 1 | |
| - name: changes-test | |
| if: contains(fromJSON(steps.filter.outputs.changes), 'error') || !contains(fromJSON(steps.filter.outputs.changes), 'any') | |
| run: exit 1 | |
| test-external: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./ | |
| id: filter | |
| with: | |
| filters: '.github/filters.yml' | |
| - name: filter-test | |
| if: steps.filter.outputs.any != 'true' || steps.filter.outputs.error == 'true' | |
| run: exit 1 | |
| test-without-token: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./ | |
| id: filter | |
| with: | |
| token: '' | |
| filters: '.github/filters.yml' | |
| - name: filter-test | |
| if: steps.filter.outputs.any != 'true' || steps.filter.outputs.error == 'true' | |
| run: exit 1 | |
| test-wd-without-token: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| path: somewhere | |
| - uses: ./somewhere | |
| id: filter | |
| with: | |
| token: '' | |
| working-directory: somewhere | |
| filters: '.github/filters.yml' | |
| - name: filter-test | |
| if: steps.filter.outputs.any != 'true' || steps.filter.outputs.error == 'true' | |
| run: exit 1 | |
| test-local-changes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: echo "NEW FILE" > local | |
| - run: git add local | |
| - uses: ./ | |
| id: filter | |
| with: | |
| base: HEAD | |
| filters: | | |
| local: | |
| - local | |
| - name: filter-test | |
| if: steps.filter.outputs.local != 'true' | |
| run: exit 1 | |
| - name: count-test | |
| if: steps.filter.outputs.local_count != 1 | |
| run: exit 1 | |
| test-change-type: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: configure GIT user | |
| run: git config user.email "john@nowhere.local" && git config user.name "John Doe" | |
| - name: modify working tree | |
| run: touch add.txt && rm README.md && echo "TEST" > LICENSE | |
| - name: commit changes | |
| run: git add -A && git commit -a -m 'testing this action' | |
| - uses: ./ | |
| id: filter | |
| with: | |
| token: '' | |
| list-files: shell | |
| filters: | | |
| added: | |
| - added: "add.txt" | |
| deleted: | |
| - deleted: "README.md" | |
| modified: | |
| - modified: "LICENSE" | |
| any: | |
| - added|deleted|modified: "*" | |
| - name: Print 'added_files' | |
| run: echo ${{steps.filter.outputs.added_files}} | |
| - name: Print 'modified_files' | |
| run: echo ${{steps.filter.outputs.modified_files}} | |
| - name: Print 'deleted_files' | |
| run: echo ${{steps.filter.outputs.deleted_files}} | |
| - name: filter-test | |
| if: | | |
| steps.filter.outputs.added != 'true' | |
| || steps.filter.outputs.deleted != 'true' | |
| || steps.filter.outputs.modified != 'true' | |
| || steps.filter.outputs.any != 'true' | |
| || steps.filter.outputs.added_files != 'add.txt' | |
| || steps.filter.outputs.modified_files != 'LICENSE' | |
| || steps.filter.outputs.deleted_files != 'README.md' | |
| run: exit 1 |