diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/deploy.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b0d5ea4..eaf50c1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,6 +1,6 @@ name: Deploy CI -on: [push] +on: [push, pull_request] jobs: build: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5f9f79..aa38050 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Test CI -on: [pull_request] +on: [push] jobs: test: runs-on: ubuntu-latest @@ -12,4 +12,4 @@ jobs: - name: Install Dependencies run: npm install - name: Run Tests - run: npm test
\ No newline at end of file + run: npm test |
