Skip to content

Migrate site from Hugo to Astro and add CI/CD workflows for GitHub Pa… #8

Migrate site from Hugo to Astro and add CI/CD workflows for GitHub Pa…

Migrate site from Hugo to Astro and add CI/CD workflows for GitHub Pa… #8

Workflow file for this run

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