refactor: migrate field widget components from RxJS to Angular signal… #4502
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: frontend | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Publish semver tags as releases | |
| tags: [ '*.*.*' ] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '24' | |
| - run: cd frontend && yarn install | |
| - name: Install Playwright browsers | |
| run: cd frontend && yarn playwright install | |
| - name: run tests | |
| run: cd frontend && yarn test | |
| license: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16' | |
| - uses: extractions/setup-just@v1 | |
| - name: license checker | |
| run: 'cd frontend && npx license-checker --onlyAllow="MIT;ISC;Python-2.0;Apache-2.0;BSD;MPL;CC;Custom: http://github.com/dscape/statsd-parser;" --excludePrivatePackages' |