From 28342c4052b4849913e69f043c764acf997de5f3 Mon Sep 17 00:00:00 2001 From: Cobular <22972550+Cobular@users.noreply.github.com> Date: Sun, 3 Jan 2021 17:44:42 -0800 Subject: [PATCH] Allow build with errors --- .github/workflows/main.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a0b72cf..77147fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: Build React App -# Controls when the action will run. +# Controls when the action will run. on: # Triggers the workflow on push or pull request events but only for the master branch push: @@ -33,19 +33,21 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - + - name: Cache dependencies uses: actions/cache@v2 with: path: | **/node_modules key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - + - name: Install dependencies run: npm install - name: Build run: npm run build + env: + CI: false # Runs a single command using the runners shell - name: Deploy