fix(docs,tags): add missing FormsModule to enable correct tag addition (#DS-3109) #1902
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: read-all | |
jobs: | |
general_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Yarn | |
uses: ./.github/workflows/actions/setup-yarn | |
- name: Build packages | |
uses: ./.github/workflows/actions/build-packages | |
- name: API Golden Checks | |
run: yarn run check-api | |
- name: Linters | |
run: | | |
yarn run cspell --no-progress | |
yarn run prettier | |
yarn run stylelint --max-warnings=0 | |
yarn run eslint --max-warnings=0 | |
- name: Unit | |
run: | | |
yarn run unit:cdk | |
yarn run unit:components | |
yarn run unit:angular-moment-adapter | |
yarn run unit:angular-luxon-adapter | |
yarn run unit:schematics | |
yarn run unit:koobiq-docs | |
yarn run unit:api-gen | |
yarn run unit:components-experimental | |
- name: License validation | |
run: yarn run validate:license |