docs(standards): scrub blog/docs fabrications from Story 13.6/13.7 #29
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 | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/devrail-dev/dev-toolchain:v1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: make _check | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Hugo | |
| uses: peaceiris/actions-hugo@v3 | |
| with: | |
| hugo-version: 'latest' | |
| extended: true | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '>=1.21' | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| # Node 22 — postcss-cli's bin script now passes --permission, | |
| # which Node 20 rejects as "bad option" and breaks Hugo's | |
| # PostCSS pipeline. | |
| node-version: '22' | |
| - name: Install PostCSS | |
| run: npm install postcss postcss-cli autoprefixer | |
| - name: Build | |
| run: hugo --minify |