Bump @types/jest from 29.5.13 to 29.5.14 (#580) #1516
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: "ci" | |
on: | |
pull_request: | |
branches: | |
- "main" | |
push: | |
branches: | |
- "main" | |
permissions: "read-all" | |
jobs: | |
bun: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
bun-version: ["latest"] | |
steps: | |
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" | |
- name: "Use Bun ${{ matrix.bun-version }}" | |
uses: "oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5" | |
with: | |
bun-version: "${{ matrix.bun-version }}" | |
- run: "bun install" | |
- run: "bun run lint" | |
- run: "bun run test" | |
- run: "bun run build" | |
node: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
node-version: ["18.x", "19.x", "20.x", "21.x", "22.x"] | |
steps: | |
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" | |
- uses: "pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2" | |
with: | |
version: "latest" | |
- name: "Use Node.js ${{ matrix.node-version }}" | |
uses: "actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af" | |
with: | |
node-version: "${{ matrix.node-version }}" | |
cache: "pnpm" | |
- run: "make install" | |
- run: "make audit_signatures" | |
- run: "make lint" | |
- run: "make test" | |
- run: "make build" |