Skip to content

update dependencies #55

update dependencies

update dependencies #55

Workflow file for this run

name: PR Flow
on:
pull_request:
branches:
- "main"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Install node
uses: actions/setup-node@v4
with:
cache: pnpm
node-version: 22.2.0
- name: Install dependencies
shell: bash
run: pnpm install
- run: pnpm build