Skip to content

chore: bump the npm_and_yarn group across 2 directories with 1 update #109

chore: bump the npm_and_yarn group across 2 directories with 1 update

chore: bump the npm_and_yarn group across 2 directories with 1 update #109

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: './pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test