Skip to content

Commit

Permalink
Update CI to point to branch 'main' (#513)
Browse files Browse the repository at this point in the history
* Update CI to point to branch 'main'

* Add junk to test if build will fail

* Revert "Add junk to test if build will fail"

This reverts commit b054ffc.

* Make build fail if webpack fails
  • Loading branch information
dgarciabriseno authored Dec 14, 2023
1 parent 9bf86ec commit cfc26ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build and Test

on:
push:
branches: [ "master" ]
branches: [ "main" ]
pull_request:
branches: [ "master" ]
branches: [ "main" ]

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion resources/build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</exec>

<echo>Running webpack</echo>
<exec dir="resources/build" executable="npx">
<exec failonerror="true" dir="resources/build" executable="npx">
<arg line="webpack --mode=production" />
</exec>

Expand Down

0 comments on commit cfc26ac

Please sign in to comment.