ci(changesets): update package version #421
Workflow file for this run
This file contains hidden or 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, Type and Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: main | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-and-type: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [lts/*] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v5 | |
| with: | |
| version: 11.18.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: Install dependencies and build | |
| run: | | |
| pnpm install --frozen-lockfile | |
| pnpm build | |
| - name: Run tests | |
| run: pnpm test | |
| - name: Run linters | |
| run: | | |
| pnpm lint:type-check | |
| pnpm lint:eslint:root |