ci(audience): shrink xvfb screen to 160x120 for llvmpipe fill rate #1396
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: "Check LICENSE/README/CHANGELOG" | |
| on: [pull_request] | |
| jobs: | |
| diff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Check that the LICENSE files are the exact same | |
| uses: LouisBrunner/diff-action@v2.0.0 | |
| with: | |
| old: LICENSE.md | |
| new: src/Packages/Passport/LICENSE.md | |
| mode: strict | |
| tolerance: same | |
| output: LICENSE-diff.txt | |
| - name: Check that the CHANGELOG files are the exact same | |
| uses: LouisBrunner/diff-action@v2.0.0 | |
| with: | |
| old: CHANGELOG.md | |
| new: src/Packages/Passport/CHANGELOG.md | |
| mode: strict | |
| tolerance: same | |
| output: changelog-diff.txt |