diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..2211a2f --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,20 @@ +name: Build website +on: + push: + branches: + - !'main' + - '*' +jobs: + build: + runs-on: docker + container: + image: registry.access.redhat.com/ubi9/nodejs-20:1-34 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install dependencies + run: npm install + + - name: Build site + run: npm run build \ No newline at end of file