Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

ci: attempt to fix ci #16

ci: attempt to fix ci

ci: attempt to fix ci #16

Workflow file for this run

name: Code CI
on:
push:
pull_request:
jobs:
build:
name: Build and test code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup node and restore cached dependencies
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install packages
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Link build
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm test