Updated dev dependencies #475
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: Node.js CI | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| name: Continuous Integration | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Print Runner Specs | |
| run: | | |
| lscpu | |
| cat /proc/meminfo | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'pnpm' | |
| - name: Installing dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Linting last commit message | |
| if: github.event_name == 'push' | |
| run: pnpm exec commitlint --last --verbose | |
| - name: Linting PR commit messages | |
| if: github.event_name == 'pull_request' | |
| run: pnpm exec commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose | |
| - name: Linting | |
| run: pnpm lint | |
| - name: Type checking | |
| run: pnpm typecheck | |
| - name: Testing | |
| run: pnpm coverage | |
| - name: Building | |
| run: pnpm build |