chore(deps-dev): bump esbuild from 0.14.54 to 0.25.0 #290
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: CI build and test | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x, 20.x, 22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.0.0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'pnpm' | |
| - name: Cache NPM dependencies | |
| uses: actions/cache@v4 | |
| id: cache | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }} | |
| - run: pnpm run bootstrap | |
| - run: pnpm run lint | |
| - run: pnpm run build | |
| env: | |
| NODE_OPTIONS: --max-old-space-size=4096 | |
| - run: pnpm run test | |
| env: | |
| CI: true | |
| NODE_OPTIONS: --max-old-space-size=4096 |