Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.0.1 #1533

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.0.1

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.0.1 #1533

Workflow file for this run

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