Bump the all-dependencies group across 1 directory with 19 updates #322
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: Verify | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-verify: | |
| name: Verify Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: Check Node Version | |
| run: node --version | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Build Project | |
| run: | | |
| npm install | |
| npm run lint | |
| npm run build |