chore: fix deps #2200
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: Build, Lint, Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
node-version: ['18.20.5', '20.11.1', '22.11.0'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build packages | |
run: pnpm --filter './packages/**' run build | |
- name: Build examples | |
if: matrix.node-version == '22.11.0' && matrix.os == 'ubuntu-latest' | |
run: pnpm --filter './examples/**' run build | |
- name: Run linter | |
run: pnpm lint | |
- name: Run type check | |
run: pnpm typecheck | |
- name: Run unit tests | |
run: pnpm test | |
- name: Run e2e tests | |
run: pnpm test:e2e | |
- name: Publish previews | |
if: matrix.node-version == '22.11.0' && matrix.os == 'ubuntu-latest' | |
run: pnpx pkg-pr-new publish --compact --pnpm './packages/*' |