diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 00000000..8f9b54da --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,11 @@ +name: Build and Test +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Build and Test + run: npm run build && npm run test