diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..ca674f8 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: "build" +on: # rebuild any PRs and main branch changes + pull_request: + push: + branches: + - master + - 'releases/*' + +jobs: + build: # make sure build/ci work properly + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: | + npm install + npm run all