chore(deps): update other major updates #1130
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: Continuous Build | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.11.1' | |
| - run: yarn | |
| - run: yarn lint | |
| - run: yarn test | |
| check-md-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v6 | |
| - name: Check Markdown links | |
| uses: umbrelladocs/action-linkspector@v1 | |
| with: | |
| reporter: github-pr-review | |
| config_file: .github/config/linkspector.yml | |
| fail_on_error: true |