From 989cd56e92b77e0464b1ca0e7b1f66a19643f1ad Mon Sep 17 00:00:00 2001 From: XuluWarrior Date: Sat, 14 Sep 2024 10:40:13 +0100 Subject: [PATCH] Github workflow for build --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c479450 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: Build +on: [push] +jobs: + Build: + runs-on: ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v3 + + - name: Install Node.js + uses: actions/setup-node@v3 + with: + node-version: 20 + + - name: Install Dependencies + run: npm install + + - name: build + run: npm run build