632 the inputtextarea does not remember the input type of element inputtextarea and height #933
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: feature [push] | |
on: | |
pull_request: | |
jobs: | |
main: | |
name: Check | |
runs-on: ubuntu-latest | |
permissions: | |
contents: 'read' | |
actions: 'read' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
- uses: nrwl/nx-set-shas@v4 | |
- run: npm ci | |
- run: npx nx report | |
- run: npx nx format:check --verbose | |
- run: npx nx affected --target=lint --parallel=3 --verbose | |
- run: npx nx affected --target=test --parallel=3 --verbose --coverage | |
- run: npx nx affected --target=typecheck --parallel=3 --verbose | |
- name: Run codacy-coverage-reporter | |
uses: codacy/codacy-coverage-reporter-action@v1.3.0 | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
# or | |
api-token: ${{ secrets.CODACY_API_TOKEN }} | |
coverage-reports: 'packages/**/**/test-output/vitest/coverage/lcov.info' | |
# or a comma-separated list for multiple reports | |
# coverage-reports: <PATH_TO_REPORT>, <PATH_TO_REPORT> |