fix: change color of output inspector when tool mode, change fuzzy search order, fix image download and some minor issues #3015
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: autofix.ci | |
on: | |
pull_request: | |
paths: | |
- "src/frontend/**" | |
permissions: | |
contents: read | |
env: | |
NODE_VERSION: "21" | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
id: setup-node | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Cache Node.js dependencies | |
uses: actions/cache@v4 | |
id: npm-cache | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('src/frontend/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Node.js dependencies | |
run: | | |
cd src/frontend | |
npm ci | |
if: ${{ steps.setup-node.outputs.cache-hit != 'true' }} | |
- name: Run Prettier | |
run: | | |
cd src/frontend | |
npm run format | |
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a |