Skip to content

chore(deps): update all non-major dependencies #199

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #199

Workflow file for this run

# .github/workflows/build.yml
# This workflow constitutes the CI pipeline of building and
# testing the project codebase.
name: build
on:
workflow_call: # Allow reusing this workflow in others
pull_request:
branches: ['**']
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.9.x
- name: Install packages
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test
- name: Generate production build
run: pnpm build