18 lines
296 B
YAML
18 lines
296 B
YAML
name: PR - Run All Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- 'client/**'
|
|
- 'ietf/**'
|
|
- 'playwright/**'
|
|
- 'requirements.txt'
|
|
- 'package.json'
|
|
|
|
jobs:
|
|
tests:
|
|
uses: ./.github/workflows/tests.yml
|
|
with:
|
|
ignoreLowerCoverage: false |