Skip to content

fix the yml

fix the yml #3

Workflow file for this run

name: CI (ngbootstrap)
on:
push: { branches: [ main ] }
pull_request: { branches: [ main ] }
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm' # <-- important
cache-dependency-path: pnpm-lock.yaml
- run: corepack enable
- run: pnpm install --frozen-lockfile
- run: pnpm build