Skip to content

Commit

Permalink
feat(ci): Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
This commit updates the GitHub Actions workflow in the
`.github/workflows/test.yml` file. The changes include adjusting
the trigger conditions for the workflow. Previously, the workflow
ran on push events for branches `master`, `develop`, `feature-*`,
`fix-*`, and `hotfix-*`. Now, the workflow will also trigger on
pull requests. This modification ensures that the workflow runs
when pull requests are created or updated, providing better
coverage for continuous integration testing.
  • Loading branch information
sultanmyrza committed Aug 1, 2023
1 parent 64f0be4 commit 91a457c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: test

on:
push:
branches: [master, develop, 'feature-*', 'fix-*', 'hotfix-*']
on: [push, pull_request]

jobs:
lint:
Expand Down

0 comments on commit 91a457c

Please sign in to comment.