From 7ffc459d09ca7bd957ad7c2c7851ccf2b21ec64e Mon Sep 17 00:00:00 2001 From: Danielo Rodriguez Date: Sat, 21 Oct 2023 13:00:43 +0200 Subject: [PATCH] refactor: run tests --- .github/workflows/pull-request.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 00000000..077a5ee8 --- /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@v2 + - name: Build and Test + run: npm run build && npm run test