Skip to content

Commit

Permalink
update action to run when a PR is modified or merged into master
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Dec 12, 2024
1 parent 39c2f3d commit 2be1594
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/eslint-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: ESLint Check

on: [pull_request]
on:
pull_request:
push:
branches:
- main

jobs:
eslint:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Run unit tests

on: [pull_request]
on:
pull_request:
push:
branches:
- main

jobs:
build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/validate-action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: "Validate Action"
on: [pull_request]
on:
pull_request:
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2be1594

Please sign in to comment.