Skip to content

chore(deps): bump tar from 7.5.10 to 7.5.11 in the npm_and_yarn group across 1 directory #3172

chore(deps): bump tar from 7.5.10 to 7.5.11 in the npm_and_yarn group across 1 directory

chore(deps): bump tar from 7.5.10 to 7.5.11 in the npm_and_yarn group across 1 directory #3172

Workflow file for this run

name: Lint
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.21.0
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Validate current commit (last commit) with commitlint
run: npx commitlint --last --verbose
- name: Typecheck
run: yarn typecheck
- name: Lint
run: yarn lint
- name: Format check
run: yarn format-check