chore(deps-dev): bump the dev-npm group across 1 directory with 21 updates #754
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}=${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: CI (Lint, Check, Build) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
node-version: [20.x, 22.x] | |
python-version: ['3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: ./.github/actions/setup-environment | |
with: | |
node-version: ${{ matrix.node-version }} | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: Format (API) | |
run: pnpm api format | |
- name: Check | |
run: pnpm check | |
- name: Build | |
run: pnpm build |