fix(kit): fix styles for input-inline when spellcheck marks word incorrect #23200
Workflow file for this run
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: ⚙️ Build | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
libs: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
name: Build packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- run: npm run run-many:build:libs | |
- run: npx ts-node ./scripts/check-dist.ts | |
demo: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
name: Prerender of demo application | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- run: npx nx prerender demo | |
- run: tree ${{ env.DIST }} -P '*.html' | |
- name: Bundle size tracking | |
run: npx --yes bundlemon --config .github/.bundlemonrc.json | |
continue-on-error: true | |
env: | |
CI_COMMIT_SHA: ${{ env.CI_COMMIT_SHA }} | |
concurrency: | |
group: build-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |