Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

configure nix, update github workflows & fix effect peer dep #145

configure nix, update github workflows & fix effect peer dep

configure nix, update github workflows & fix effect peer dep #145

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
strategy:
matrix:
node-version: [18.16.1]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install
- run: pnpm build
- run: pnpm test
- run: pnpm lint