Merge pull request #150 from sillsdev/controllerFeatureParity #221
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: Run-Tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - next | |
| pull_request: | |
| branches: | |
| - main | |
| - next | |
| concurrency: | |
| group: run-tests-${{ github.ref }} | |
| cancel-in-progress: true | |
| # Keep setup/test semantics aligned with release.yml where applicable. | |
| jobs: | |
| run-tests: | |
| runs-on: windows-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Node, dependencies, and Playwright | |
| uses: ./.github/actions/setup-ci-deps | |
| - name: Build package and run tests | |
| uses: ./.github/actions/build-and-test |