chore(deps): update dependency rimraf to v6.1.2 [skip netlify] #356
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 and build | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Lint files | |
| run: npm run lint | |
| - name: Build site | |
| run: npm run build |