Skip to content

chore: npm-check-updates && yarn upgrade #74894

chore: npm-check-updates && yarn upgrade

chore: npm-check-updates && yarn upgrade #74894

Workflow file for this run

# https://octokit.github.io/rest.js
# https://github.com/actions/toolkit/blob/master/packages/github/src/context.ts
name: PR Linter
on:
pull_request:
types:
- labeled
- unlabeled
- edited
- opened
- synchronize
- reopened
jobs:
validate-pr:
permissions:
contents: read
pull-requests: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install & Build prlint
run: yarn install --frozen-lockfile && cd tools/@aws-cdk/prlint && yarn build+test
- name: Validate
uses: ./tools/@aws-cdk/prlint
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_ROOT: ${{ github.workspace }}