build(deps-dev): bump @types/node from 20.17.24 to 24.8.1 #796
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: 'build-test' | |
| on: push | |
| jobs: | |
| build: # make sure build/ci work properly | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| npm install | |
| - run: | | |
| npm run all | |
| test: # make sure the actions work on a clean machine without building | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # We don't need to even install for this one | |
| - uses: ./deploy-path/ | |
| # We have to install before this one because it is going to try to build | |
| - run: | | |
| npm install | |
| - uses: ./ |