diff --git a/.github/workflows/MainBuildAndTeste.yml b/.github/workflows/MainBuildAndTeste.yml new file mode 100644 index 0000000..7599fba --- /dev/null +++ b/.github/workflows/MainBuildAndTeste.yml @@ -0,0 +1,17 @@ + +name: Build and Test +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] +jobs: + build-and-test: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Install dependencies + run: npm ci + - name: Build + run: npm run build