From 3fbba1648f3a0277d888ed7471e58d808e664e9d Mon Sep 17 00:00:00 2001 From: Blayne Chard Date: Tue, 2 Jan 2024 10:54:07 +1300 Subject: [PATCH] ci: allow ci to run on pull requests --- .github/workflows/push.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 693ee17..13560a5 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -1,10 +1,14 @@ name: Build -on: [push] +on: + pull_request: + push: + branches: + - master jobs: build: runs-on: ubuntu-latest steps: - - uses: linz/action-typescript@v3 \ No newline at end of file + - uses: linz/action-typescript@v3