Skip to content

Commit

Permalink
ci: remove escaping of ! in filter argument to turbo run
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulkar committed May 17, 2023
1 parent 541de93 commit 397ee7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ jobs:

- name: Run tests
run: |
turbo run check-types test --filter=...[${{ github.event.pull_request.base.sha || 'HEAD^1' }}] --filter="./packages/*" --filter="\!@vercel/*" --filter="\!turborepo-tests*" --color
turbo run check-types test --filter=...[${{ github.event.pull_request.base.sha || 'HEAD^1' }}] --filter="./packages/*" --filter="!@vercel/*" --filter="!turborepo-tests*" --color
rust_prepare:
name: Check rust crates
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/turborepo-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
github-token: "${{ secrets.GITHUB_TOKEN }}"
target: ${{ matrix.os.name }}
- name: Run JS Package Tests
run: turbo run check-types test --filter="./packages/*" --filter="\!@vercel/*" --filter="\!turborepo-tests*" --color
run: turbo run check-types test --filter="./packages/*" --filter="!@vercel/*" --filter="!turborepo-tests*" --color

build-go-darwin:
name: "Build Go for macOS"
Expand Down

0 comments on commit 397ee7a

Please sign in to comment.