fix(vitest): use fast-glob
instead of tinyglobby
in Vitest
#207
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: CR | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, labeled] | |
permissions: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
release: | |
if: github.repository == 'vitest-dev/vitest' && (github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'cr-tracked')) | |
runs-on: ubuntu-latest | |
name: 'Release: pkg.pr.new' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Set node version to 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
cache: pnpm | |
- name: Install | |
run: pnpm install --frozen-lockfile --prefer-offline | |
env: | |
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1' | |
- name: Build | |
run: pnpm build | |
env: | |
NO_VITE_TEST_WATCHER_DEBUG: '1' | |
- name: Publish to StackBlitz | |
run: pnpx pkg-pr-new publish --compact --no-template --pnpm './packages/*' |