chore: package upgrades, addressing several linter warnings after upg… #293
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| node: ["20.x", "22.x", "24.x"] | |
| os: [ubuntu-24.04] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - uses: pnpm/[email protected] | |
| with: | |
| version: 10.12.1 | |
| - name: Install | |
| run: pnpm i | |
| - name: Lint | |
| run: pnpm --filter objecs lint | |
| - name: Build | |
| run: pnpm --filter objecs build | |
| - name: Check Exports | |
| run: pnpm --filter objecs check-exports | |
| - name: Test | |
| run: pnpm --filter objecs test -- --run |