Show source and trust information #3598
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 | |
| permissions: | |
| contents: read | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| env: | |
| CI: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up using pnpm | |
| uses: oBusk/action-pnpm-setup@v1 | |
| - name: Check Linting | |
| run: pnpm run lint | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| env: | |
| CI: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up using pnpm | |
| uses: oBusk/action-pnpm-setup@v1 | |
| - name: Run tests | |
| run: pnpm run test-ci | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| env: | |
| CI: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up using pnpm | |
| uses: oBusk/action-pnpm-setup@v1 | |
| - name: Type check | |
| run: pnpm run typecheck | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| env: | |
| CI: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up using pnpm | |
| uses: oBusk/action-pnpm-setup@v1 | |
| - name: Build | |
| run: pnpm run build |