Skip to content

Commit

Permalink
Merge pull request #377 from atesgoral/atesgoral/run-tests-on-prs
Browse files Browse the repository at this point in the history
Run tests on PRs
  • Loading branch information
atesgoral authored Jul 5, 2024
2 parents 667be65 + 01d52d3 commit 2189ea2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install
run: yarn
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Test
on: [push]
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install
run: yarn
Expand Down

0 comments on commit 2189ea2

Please sign in to comment.