diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6144490 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,14 @@ +name: build +on: + push: + # Can't push a build commit to a tag, so only run for branches + branches: + - '**' + paths: + # Include any files that could require rebuilding + - 'package-lock.json' + - 'src/**' + +jobs: + ncc-build: + uses: planningcenter/balto-utils/.github/workflows/ncc.yml@v2