Skip to content

ci(deps): bump github/codeql-action from 3.32.0 to 4.32.4 #187

ci(deps): bump github/codeql-action from 3.32.0 to 4.32.4

ci(deps): bump github/codeql-action from 3.32.0 to 4.32.4 #187

Workflow file for this run

name: Lint extension
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/setup
- name: Run Prettier
run: npx prettier --check .
- name: Run eslint
run: npx eslint
- name: Check TypeScript
run: npm run typecheck