Skip to content

chore(deps): bump the all group across 1 directory with 38 updates #25

chore(deps): bump the all group across 1 directory with 38 updates

chore(deps): bump the all group across 1 directory with 38 updates #25

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.13.1]
pnpm-version: [9.1.1]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm ${{ matrix.pnpm-version }}
uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm-version }}
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Test
run: pnpm test