Skip to content

chore(deps-dev): bump the dev-npm group with 5 updates #261

chore(deps-dev): bump the dev-npm group with 5 updates

chore(deps-dev): bump the dev-npm group with 5 updates #261

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}=${{ github.head_ref }}
cancel-in-progress: true
jobs:
ci:
name: CI (Lint, Build)
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build