Bump husky from 9.1.6 to 9.1.7 #1548
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: "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" | |
deno: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
deno-version: ["2.x"] | |
steps: | |
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" | |
- name: "Use Deno ${{ matrix.deno-version }}" | |
uses: "denoland/setup-deno@4606d5cc6fb3f673efd4f594850e3f4b3e9d29cd" | |
with: { deno-version: "v${{ matrix.deno-version }}" } | |
- run: "deno install" | |
- run: "deno task lint" | |
- run: "deno task test" | |
- run: "deno task 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" |