Allow build with errors

pull/4/head
Julie 5 years ago
parent bf8ebdb7c9
commit ddad08853f
Signed by: cobular
GPG Key ID: 8CAB39FC9A8F13FB

@ -2,7 +2,7 @@
name: Build React App name: Build React App
# Controls when the action will run. # Controls when the action will run.
on: on:
# Triggers the workflow on push or pull request events but only for the master branch # Triggers the workflow on push or pull request events but only for the master branch
push: push:
@ -33,19 +33,21 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Cache dependencies - name: Cache dependencies
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: | path: |
**/node_modules **/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies - name: Install dependencies
run: npm install run: npm install
- name: Build - name: Build
run: npm run build run: npm run build
env:
CI: false
# Runs a single command using the runners shell # Runs a single command using the runners shell
- name: Deploy - name: Deploy

Loading…
Cancel
Save