chore(deps-dev): bump @octokit/plugin-rest-endpoint-methods from 11.0.0 to 11.0.1 #1553
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: PR Checks | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN || secrets.GITHUB_TOKEN }} | |
- name: Validate package.json | |
uses: ExpediaGroup/package-json-validator@v1 | |
with: | |
rules: ranges | |
dependency-types: | | |
dependencies | |
devDependencies | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
- name: Validate Copyright Headers | |
run: deno run -A scripts/verify-file-headers.ts | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run Prettier | |
run: npm run format-check | |
- name: Run Lint | |
run: npm run lint | |
- name: Run Unit Tests | |
run: npm run test | |
- name: Package | |
run: npm run package | |
- name: Compare the expected and actual dist/ directories | |
run: | | |
if [[ $(git status --porcelain) ]]; then | |
echo "Detected uncommitted changes after build. Please run npm run package and commit the changes!" | |
git status | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor }}@users.noreply.github.com" | |
git add dist/ | |
git commit -m "chore: committing generated dist" --no-verify | |
git push | |
exit 1 | |
fi |