chore(deps-dev): Bump @eslint/js from 9.39.2 to 10.0.1 #49
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: Test building Eleventy when a Pull Request is created or updated. | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Check-out the repository under $GITHUB_WORKSPACE. | |
| - uses: actions/checkout@master | |
| - name: Install dependencies. | |
| run: npm ci | |
| - name: Lint with fix. | |
| run: npx eslint --fix | |
| # Build the website with Eleventy. | |
| - name: Build Eleventy. | |
| run: npm run build | |
| permissions: | |
| contents: read | |
| pull-requests: write | |