chore: Skip as
keyword and aliases in barrel files when checking public APIs
#8337
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: 'pr-check' | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
check-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Collect changed files | |
uses: step-security/changed-files@v46.0.5 | |
id: changed-files | |
with: | |
files: | | |
.changeset/** | |
- uses: ./.github/actions/check-pr | |
with: | |
changed-files: ${{ steps.changed-files.outputs.added_files }} ${{ steps.changed-files.outputs.modified_files }} |