Skip to content

Dependabot updates #741

Dependabot updates

Dependabot updates #741

Workflow file for this run

---
name: "ci"
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
permissions: "read-all"
jobs:
linux:
runs-on: "ubuntu-latest"
strategy:
matrix:
node-version: ["18.x", "19.x", "20.x", "21.x"]
steps:
- uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11"
- uses: "pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598"
with:
version: "latest"
- name: "Use Node.js ${{ matrix.node-version }}"
uses: "actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65"
with:
node-version: "${{ matrix.node-version }}"
cache: "pnpm"
- run: "make install"
- run: "make lint"
- run: "make test"
- run: "make build"