From d55f0ac388d336462ee3b8e14422844a577cbd90 Mon Sep 17 00:00:00 2001 From: tomholford Date: Thu, 17 Nov 2022 06:51:07 -0800 Subject: [PATCH] devex: add ci --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 00000000..7be65287 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI (Build) +on: pull_request +jobs: + test-build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3.0.0 + + - name: Setup Node.js environment + uses: actions/setup-node@v3.1.1 + with: + node-version-file: ./.nvmrc + + - name: Install Dependencies + run: npm ci + + - name: Build + run: npm run build