From 68dc7ac66ceb61f23c2266ce90c1ea5ff01c49b0 Mon Sep 17 00:00:00 2001 From: matt c Date: Thu, 17 Oct 2024 16:10:54 +0100 Subject: [PATCH] add pr workflow --- .forgejo/workflows/pr.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .forgejo/workflows/pr.yml diff --git a/.forgejo/workflows/pr.yml b/.forgejo/workflows/pr.yml new file mode 100644 index 0000000..29227ea --- /dev/null +++ b/.forgejo/workflows/pr.yml @@ -0,0 +1,14 @@ +on: [pull_request] +jobs: + testbuild: + runs-on: docker + container.image: node:20-bookworm + steps: + - uses: actions/checkout@v3 + - run: npm install && npm run build + name: NPM Install and Build + - name: Upload output + uses: actions/upload-artifact@v3 + with: + name: outputsite + path: .vercel/output/static \ No newline at end of file