π chore: Restore to default build time #28
This file contains 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: ποΈ Test Build | |
on: | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: π Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: βοΈ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: "package.json" | |
- name: π¦ Install dependencies | |
run: | | |
cd themes/congo | |
npm ci | |
- name: ποΈ Build CSS | |
run: npm run css:build | |
- name: ποΈ Build site | |
uses: tomy0000000/actions/hugo-github-pages@main | |
with: | |
hugo_version: "0.139.3" |