Skip to content

⬆️ chore(deps): Update all non-major dependencies #280

⬆️ chore(deps): Update all non-major dependencies

⬆️ chore(deps): Update all non-major dependencies #280

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
env:
CI: true
jobs:
validating:
name: 🚀 Validating PR
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.20.5, 20.18.1, 22.13.0]
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 📦 Init pnpm (latest)
uses: pnpm/action-setup@v4
- name: 🛠️ Use Node.js (v${{ matrix.node-version }})
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: pnpm-lock.yaml
- name: 📚 Install dependencies
run: pnpm install --frozen-lockfile
- name: 🏗️ Build
run: pnpm build
- name: 🧹 Lint
run: pnpm lint