Bump @npmcli/arborist from 9.1.3 to 9.1.4 in the npm-dependencies group across 1 directory #350
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: 👷🏾♂️ CI - Build Eleventy on PR | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v5 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm install | |
- name: Build Tailwindcss | |
run: npm run tailwindcss:build | |
- name: Build Eleventy site | |
run: npm run build | |
- name: Verify build output | |
run: | | |
if [ ! -d "./_site" ]; then | |
echo "_site folder missing — build failed" | |
exit 1 | |
fi |