Skip to content

chore(deps): update pnpm to v11.14.0 (#71) #234

chore(deps): update pnpm to v11.14.0 (#71)

chore(deps): update pnpm to v11.14.0 (#71) #234

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [26.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v7
- name: Install pnpm 📦
uses: pnpm/action-setup@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Set up Ruby 3.2.0
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.10
bundler-cache: true
- name: Install 🔧
run: pnpm install --frozen-lockfile
- name: Build 🏗️
run: pnpm run build
- name: Typecheck 🔎
run: pnpm run typecheck
- name: Lint 🧐
run: pnpm run lint
- name: Format 🎨
run: pnpm exec oxfmt --check
- name: Test 🚨
run: pnpm test