chore(deps): update dependency @types/node to v24.10.4 #1371
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 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| build: | |
| name: π¨ Build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: β‘ Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: π¨ Build | |
| run: yarn build:lib | |
| lint: | |
| name: π Lint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: β‘ Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: π Lint | |
| run: yarn lint | |
| env: | |
| ESLINT_USE_FLAT_CONFIG: false |