From 59612b1f2c22dc0d932c8af4238786bc4fd6e51f Mon Sep 17 00:00:00 2001 From: Alex Weininger Date: Fri, 30 Apr 2021 00:11:57 -0700 Subject: [PATCH] Create ciBuild.yml --- .github/workflows/ciBuild.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/ciBuild.yml diff --git a/.github/workflows/ciBuild.yml b/.github/workflows/ciBuild.yml new file mode 100644 index 0000000..d906bcd --- /dev/null +++ b/.github/workflows/ciBuild.yml @@ -0,0 +1,29 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: CI Build + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x, 14.x, 15.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm run package