Skip to content

Update to use pnpm and bump Nodejs version to v20 #41

Update to use pnpm and bump Nodejs version to v20

Update to use pnpm and bump Nodejs version to v20 #41

Workflow file for this run

name: "Build"
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: "yarn"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint