build(deps-dev): bump eslint-plugin-unicorn from 62.0.0 to 63.0.0 #5653
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 | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| env: | |
| FORCE_COLOR: 2 | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6.2.0 | |
| with: | |
| node-version: lts/* | |
| cache: 'npm' | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Install website npm dependencies | |
| run: npm ci | |
| working-directory: website | |
| - name: Build Cheerio | |
| run: npm run build | |
| - name: Build website | |
| run: npm run build | |
| working-directory: website | |
| - name: Run lint | |
| run: npm run lint |