chore(release-please--branches--release-please--branches--release-please--branches--release-please--branches--make-bucket-configurable): release 1.13.6 #37
Workflow file for this run
This file contains 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: check pr | |
on: | |
pull_request: {} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run lint | |
actions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run actions | |
- run: | | |
git diff --name-only -- "actions/**/*.js" | xargs --no-run-if-empty git diff --exit-code -- \ | |
|| (echo "Change to actions detected, please run 'npm run actions' and commit the changes" && false) | |
workflows: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run workflows | |
- run: | | |
git diff --name-only -- ".github/workflows/*.yml" | xargs --no-run-if-empty git diff --exit-code -- \ | |
|| (echo "Change to workflows detected, please run 'npm run workflows' and commit the changes" && false) | |
test: | |
runs-on: ubuntu-latest | |
needs: | |
- lint | |
- actions | |
- workflows | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run ci-test | |
check-title: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |