Skip to content

Commit

Permalink
Merge pull request IQSS#401 from IQSS/feature/400-pr-workflow-trigger
Browse files Browse the repository at this point in the history
add PR triggers to github action workflows
  • Loading branch information
GPortas authored May 29, 2024
2 parents b34292e + e46ea1b commit e400c60
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/accessibility.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: accessibility

on: push
on: [push, pull_request]

jobs:
interaction-and-accessibility:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chromatic-design-system.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Chromatic Design System '

# Event for the workflow
on: push
on: [push, pull_request]

# List of jobs
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Chromatic'

# Event for the workflow
on: push
on: [push, pull_request]

# List of jobs
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: lint

on: push
on: [push, pull_request]

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test

on: push
on: [push, pull_request]

env:
E2E_DATAVERSE_IMAGE_TAG: unstable
Expand Down

0 comments on commit e400c60

Please sign in to comment.