From 694fbb288c2608b42e05b3e9dc46296939f0e58d Mon Sep 17 00:00:00 2001 From: "Jocelyn Badgley (Twipped)" Date: Wed, 25 Aug 2021 08:55:10 -0700 Subject: [PATCH] Adding github action --- .github/workflows/ensure-build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ensure-build.yml diff --git a/.github/workflows/ensure-build.yml b/.github/workflows/ensure-build.yml new file mode 100644 index 0000000..0900c4d --- /dev/null +++ b/.github/workflows/ensure-build.yml @@ -0,0 +1,20 @@ +name: Ensure Site Builds Cleanly +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: '14' + cache: 'npm' + - run: npm ci + - run: npm test + - run: npm build