Use name when processing search bar input #2545
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: Report Viewer Prettier Check Workflow # Checks the report viewer against the prettier rules | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- ".github/workflows/report-viewer-prettier.yml" | |
- "report-viewer/**" | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- ".github/workflows/report-viewer-prettier.yml" | |
- "report-viewer/**" | |
jobs: | |
pre_job: | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
concurrent_skipping: 'same_content_newer' | |
skip_after_successful_duplicate: 'true' | |
check: | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install and Check 🎨 | |
working-directory: report-viewer | |
run: | | |
npm install | |
npx prettier --check src/**/*.ts | |
npx prettier --check src/**/*.vue |