chore(deps): update dependency @types/node to v24.10.7 #1195
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: SOURCE | |
| on: | |
| workflow_call: | |
| merge_group: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| name: lint source | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup package manager | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: false | |
| - name: install node | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: pnpm | |
| check-latest: true | |
| node-version-file: .nvmrc | |
| - name: install dependencies | |
| run: pnpm install | |
| - name: lint source | |
| run: pnpm lint | |
| build: | |
| name: build source | |
| runs-on: ubuntu-latest | |
| env: | |
| APPLICATION_SITE: ${{ vars.APPLICATION_SITE }} | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup package manager | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: false | |
| - name: install node | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: pnpm | |
| check-latest: true | |
| node-version-file: .nvmrc | |
| - name: install dependencies | |
| run: pnpm install | |
| - name: build source | |
| run: pnpm build |