5965 task compare datasets node thumbnail should be one of the charts… #16502
This file contains 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
--- | |
# This workflow runs all client tests | |
name: Client Tests | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_call: | |
push: | |
branches: ['main'] | |
paths: | |
- 'packages/client/**' | |
pull_request: | |
branches: ['main'] | |
paths: | |
- 'packages/client/**' | |
jobs: | |
lint-client: | |
name: Lint and format client | |
uses: ./.github/workflows/lint-client.yaml | |
unit-tests: | |
name: Client Unit Tests | |
needs: lint-client | |
uses: ./.github/workflows/test-client-unit.yaml |