fix(deps): update dependency @11ty/eleventy to v3 #285
This file contains 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 | |
- name: Cache node modules | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies | |
run: npm install | |
env: | |
CI: true | |
- name: Lint files | |
run: npm run lint | |
env: | |
CI: true | |
- name: Build site | |
run: npm run build | |
env: | |
CI: true | |