Allow build with errors

replace/ddad08853fca9d36b86f0d5e1c09869fb41ed8ff
Cobular 5 years ago
parent bba805d483
commit 28342c4052

@ -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

Loading…
Cancel
Save