chore(deps): update dependency node to v24 #3400
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: Test | |
| on: | |
| - push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 24.13.0 | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run build | |
| run: yarn build | |
| - name: Run format | |
| run: yarn format:check | |
| - name: Run lint | |
| run: yarn lint | |
| - name: Run tests | |
| run: yarn test |