From 89273b0befa7b5cb176f2dced6913fe5cfe04219 Mon Sep 17 00:00:00 2001 From: Jonas Date: Mon, 27 Nov 2023 18:49:34 +0100 Subject: [PATCH] Build on CI --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c642d32 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: 'npm' + - run: make install + - run: make clean setup build