Bump the npm_and_yarn group across 1 directory with 5 updates #1467
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: Astro Build | |
| on: | |
| push: | |
| branches: [main, astro-erudite-design] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| NODE_VERSION: "24" | |
| ASTRO_TELEMETRY_DISABLED: "1" | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Enable pnpm | |
| run: corepack enable | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build Astro site | |
| run: pnpm run build | |
| - name: Check build output | |
| run: ls -la dist/ |