[fix][frontend] fix echo bug in trace filter's number input (#431) #228
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: CI@frontend - TS Check | |
| on: | |
| push: | |
| branches: ["main", "release/**"] | |
| paths: | |
| - 'frontend/**' | |
| - '.github/workflows/frontend-tsc-ci.yaml' | |
| pull_request: | |
| branches: ["main", "release/**"] | |
| paths: | |
| - 'frontend/**' | |
| - '.github/workflows/frontend-tsc-ci.yaml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| setup: | |
| name: TS Check | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_VERSION: '18' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| common/temp/pnpm-local | |
| common/temp/pnpm-store | |
| common/temp/install-run | |
| key: ${{ runner.os }}-rush-store-${{ hashFiles('common/config/subspaces/default/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-rush-store-main | |
| ${{ runner.os }}-rush-store | |
| - name: Changed Files | |
| uses: tj-actions/changed-files@v46.0.5 | |
| with: | |
| files: | | |
| frontend/** | |
| json: true | |
| write_output_files: true | |
| - name: Install Dependencies | |
| run: | | |
| node common/scripts/install-run-rush.js increment --action install -p .github/outputs/all_changed_files.json | |
| - name: Prepare Basic Packages | |
| run: | | |
| node common/scripts/install-run-rush.js pre-build -v | |
| - name: TS Check | |
| run: | | |
| node common/scripts/install-run-rush.js increment --action ts-check -p .github/outputs/all_changed_files.json |