847 show feedback when writing multiple params #426
Workflow file for this run
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: Playwright Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: gcs | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: Install dependencies | |
| working-directory: gcs | |
| run: yarn | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Generate parameter definitions | |
| working-directory: gcs/data | |
| run: python generate_param_definitions.py | |
| - name: Run playwright tests | |
| working-directory: gcs | |
| run: yarn test | |
| env: | |
| CI: true | |
| # Disable Electron sandbox for CI environment | |
| ELECTRON_DISABLE_SANDBOX: 1 |