Update play-v30 to 16.1.0 #611
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
| # Find full documentation here https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
| name: Inclusive Language | |
| on: | |
| pull_request: | |
| # Manual invocation. | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| inclusion-lint: | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| # See https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Node | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 | |
| - name: Run inclusion | |
| run: find . -name '*.md' | grep -Ev node-modules\|node_modules | xargs npx alex | |