Bump caniuse-lite from 1.0.30001759 to 1.0.30001760 in the packages group #483
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: Build and Test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22.x | |
| check-latest: true | |
| package-manager-cache: false | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| run_install: | | |
| - recursive: false | |
| args: [--no-frozen-lockfile] | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: lint | |
| env: | |
| CI: true | |
| run: bun run lint | |
| - name: build | |
| env: | |
| CI: true | |
| run: bun run --bun build |