Skip to content

chore: update package.json and pnpm-lock.yaml #11

chore: update package.json and pnpm-lock.yaml

chore: update package.json and pnpm-lock.yaml #11

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
lint-and-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v3
id: pnpm-install
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint & Build
run: pnpm lint && pnpm build