From 155f121801514b5a0132b7c4834b91f569099a5d Mon Sep 17 00:00:00 2001 From: Cal Courtney Date: Fri, 20 Oct 2023 15:29:52 +0100 Subject: [PATCH] Add Github build action and CODEOWNERS file --- .github/CODEOWNERS | 1 + .github/workflows/build.yml | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/workflows/build.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..8232512 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @calthejuggler @epievalex @marcio-absmartly @mario-silva \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c50a6a7 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Build + +on: + pull_request: + types: + - opened + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Install dependencies + run: npm install + + - name: Run npm build + run: npm run build \ No newline at end of file