From 7e18a5dddcdba77269b3a77cabc1961ef2bed2be Mon Sep 17 00:00:00 2001 From: Oluwatobi Shokunbi Date: Sun, 18 Feb 2024 13:18:55 +0000 Subject: [PATCH] Create test-pull-request.yaml --- .github/workflows/test-pull-request.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test-pull-request.yaml diff --git a/.github/workflows/test-pull-request.yaml b/.github/workflows/test-pull-request.yaml new file mode 100644 index 0000000..7de2282 --- /dev/null +++ b/.github/workflows/test-pull-request.yaml @@ -0,0 +1,15 @@ +on: + pull_request: + types: [opened] + +name: Test new pull request +jobs: + release: + name: Unit test + runs-on: ubuntu-latest + steps: + - name: Install npm package + with: + EXECUTE_COMMANDS: | + yarn install + yarn test \ No newline at end of file