fix(deps): update dependency debounce-microtasks to ^0.1.7 #12303
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: Tests | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- 'internal/website/**' | |
- '.vscode/**' | |
- '.husky/**' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'internal/website/**' | |
- '.vscode/**' | |
- '.husky/**' | |
env: | |
CI: true | |
PNPM_CACHE_FOLDER: .pnpm-store | |
jobs: | |
build: | |
timeout-minutes: 20 | |
name: Install, Build and Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4.0.0 | |
with: | |
run_install: false | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Setup pnpm store | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Setup pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies and build | |
run: pnpm i --frozen-lockfile | |
- name: Test ESM | |
run: node scripts/test-esm.mjs | |
- name: Test everything | |
run: pnpm test:ci |