Skip to content

Commit

Permalink
Also run test when a PR is opened or reopened
Browse files Browse the repository at this point in the history
  • Loading branch information
ekraffmiller committed Jul 25, 2024
1 parent ccb5413 commit ee2584e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/accessibility.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: accessibility

on: [push, pull_request]
on:
push:
pull_request:
types: [opened, reopened]

jobs:
interaction-and-accessibility:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: lint

on: [push, pull_request]
on:
push:
pull_request:
types: [opened, reopened]

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

on: [push]
on:
push:
pull_request:
types: [opened, reopened]

env:
E2E_DATAVERSE_IMAGE_TAG: unstable
Expand Down

0 comments on commit ee2584e

Please sign in to comment.