From 9581c271cc95909963318b683ab2aabe0f3a7471 Mon Sep 17 00:00:00 2001 From: slowriot Date: Thu, 14 Nov 2024 17:54:23 +0000 Subject: [PATCH] Define CI build workflow --- .github/workflows/ci-build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci-build.yml diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml new file mode 100644 index 0000000..60b7bdd --- /dev/null +++ b/.github/workflows/ci-build.yml @@ -0,0 +1,21 @@ +name: CI build + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup Emscripten toolchain + uses: mymindstorm/setup-emsdk@v14 + with: + version: 3.1.71 + - name: build + run: ./build.sh