Skip to content

chore: updates dependencies and migrates infrastructural tooling (#26) #67

chore: updates dependencies and migrates infrastructural tooling (#26)

chore: updates dependencies and migrates infrastructural tooling (#26) #67

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
name: Build, lint, format, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [18.x, 20.x, 22.x]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
id: pnpm-install
with:
version: 9
run_install: false
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Lint
run: pnpm lint
- name: Format
run: pnpm format
- name: Check types
run: pnpm check:types
- name: Test
run: pnpm test
- name: Build
run: pnpm build