chore: remove the line background in the inline code block with light… #737
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: Build | |
| on: | |
| pull_request_target: | |
| branches: | |
| - main | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "**.md" | |
| - "**.spec.js" | |
| - ".idea" | |
| - ".vscode" | |
| - ".dockerignore" | |
| - "Dockerfile" | |
| - ".gitignore" | |
| - "resources/**" | |
| - "scripts/**" | |
| - "docker/**" | |
| - "build/**" | |
| - "docs/**" | |
| - ".github/**" | |
| - "!.github/workflows/build.yml" | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Checkout submodules | |
| run: git submodule update --init --recursive | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "0.6.14" | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install Python build tools | |
| run: pip install setuptools | |
| - name: Install Dependencies | |
| run: npm ci |