From 124f5ad331c7a12eeaefe263bd078ffde2ffc810 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 19 Nov 2020 14:31:11 -0500 Subject: [PATCH] Create deploy.yml hello github actions --- .github/workflows/deploy.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 000000000..7ebac4c56 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,30 @@ +# 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: Node.js CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x, 14.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: GitHub Action for Yarn + uses: Borales/actions-yarn@v2.3.0 + - run: yarn + - run: NODE_ENV=production yarn compile:web