fix(omnibox): remove character limit for matching container names #11
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: pull-request | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review, review_requested] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository to the runner | |
| uses: actions/checkout@v4 | |
| - name: Setup nodejs | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: Lint | |
| run: | | |
| npm install | |
| npm run lint | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository to the runner | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Setup nodejs | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: Test | |
| run: | | |
| npm install | |
| npx vitest related --run $(git diff --name-only --relative HEAD^1 HEAD) |