Skip to content

Commit

Permalink
Const name job for ui tests (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Draggu authored Dec 13, 2024
1 parent 813ee0a commit 60e81a7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- run: npm ci
- run: npm run compile-test
- run: npm test
test-ui:
test-ui-parametrized:
name: test ui
strategy:
matrix:
Expand All @@ -53,3 +53,12 @@ jobs:
- run: npm ci
- run: npm run compile-test
- run: xvfb-run --auto-servernum --server-args='-screen 0 1920x1080x24' npm run ui-test
test-ui:
if: ${{ always() }}
needs: test-ui-parametrized
runs-on: ubuntu-latest
steps:
- if: needs.test-ui-parametrized.result == 'success'
run: exit 0
- if: needs.test-ui-parametrized.result != 'success'
run: exit 1

0 comments on commit 60e81a7

Please sign in to comment.