Skip to content

ci(deps): bump actions/setup-node from 4.2.0 to 6.3.0 #197

ci(deps): bump actions/setup-node from 4.2.0 to 6.3.0

ci(deps): bump actions/setup-node from 4.2.0 to 6.3.0 #197

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