Skip to content

Commit

Permalink
Allow warnings in release build
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Klimas committed Jul 11, 2021
1 parent b473e70 commit 98128e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
run: npm install
- name: Test
run: npm run test
# Disable the CI flag to allow warnings in the build.
# https://github.com/facebook/create-react-app/issues/3657
- name: Build
run: npm run build
run: CI=false npm run build
- name: Create draft release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 98128e7

Please sign in to comment.