Bump micromatch from 4.0.5 to 4.0.8 (#126) #432
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint, Check Types, Build | |
on: push | |
jobs: | |
lint-check-types-and-build: | |
name: Lint, Check Types, Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- run: pnpm eslint . --max-warnings 0 | |
- run: pnpm tsc | |
- run: pnpm tsc --project tsconfig.node.json --noEmit | |
- name: Build extension | |
run: pnpm build |