From 0314f927913e09d152e46a33097bb8295df8bf51 Mon Sep 17 00:00:00 2001 From: Carlos Pereira Atencio Date: Thu, 29 Feb 2024 13:39:49 +0000 Subject: [PATCH] ci: Add basic GH Actions worfklow to test & build project. --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 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..2edb9ab --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: Test & Build + +on: + push: + branches: '*' + pull_request: + branches: '*' + +jobs: + test-build: + name: Run tests and build project + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: npm ci + - run: npm run build