build(deps): bump postcss from 8.5.8 to 8.5.13 in /site (#560) #41
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: Site build | |
| on: | |
| pull_request: | |
| paths: | |
| - site/** | |
| - _data/** | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - site/** | |
| - _data/** | |
| jobs: | |
| site-build: | |
| name: Build Astro site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'latest' | |
| cache: npm | |
| cache-dependency-path: site/package-lock.json | |
| - name: Install dependencies | |
| working-directory: site | |
| run: npm ci | |
| - name: Build Astro site | |
| working-directory: site | |
| env: | |
| ASTRO_TELEMETRY_DISABLED: "1" | |
| run: npm run build |