Skip to content

update workflow from yarn to pnpm #68

update workflow from yarn to pnpm

update workflow from yarn to pnpm #68

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@master
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 22
cache: "pnpm"
- name: Install project dependencies
shell: bash
run: pnpm install
- name: Build 🏗️
run: yarn build