Migrate site from Hugo to Astro and add CI/CD workflows for GitHub Pa… #8
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: | |
| push: | |
| branches: [main, master, dev, work] | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Astro | |
| uses: withastro/action@v3 | |
| with: | |
| path: . | |
| node-version: 20 | |
| package-manager: npm | |
| - name: Type/content check | |
| run: npm run check | |
| - name: Build site | |
| run: npm run build |