1
0
Fork 0

fix(.github): Add noop jobs to workflows to prevent spurious notifications

This commit is contained in:
Benjamin Fan 2024-01-16 20:31:54 -08:00
parent ff002b71d0
commit 99a5d47c85
2 changed files with 16 additions and 0 deletions

View file

@ -1,4 +1,12 @@
name: Playwright Tests
on: [push]
jobs:
noop:
runs-on: ubuntu-latest
steps:
- run: echo Noop.
# While it's nice to test e2e tests, it's not all that useful to run them on alpha code
#on:
# push:

View file

@ -1,4 +1,12 @@
name: Test new-design
on: [push]
jobs:
noop:
runs-on: ubuntu-latest
steps:
- run: echo Noop.
#on:
# push:
# branches: