build(deps-dev): Bump dependency knip to ^6.7.0 #324
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 and validate the content" | |
| on: | |
| pull_request: | |
| branches: [main] | |
| # No permissions are required for this workflow | |
| permissions: {} | |
| env: | |
| HUSKY_SKIP: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.x | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Execute tests | |
| run: npm run test | |
| - name: Build and validate all steps | |
| run: npm run build |