Skip to content

Update readme.md

Update readme.md #62

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
jobs:
all:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: true
- name: Build
run: pnpm --filter @cofn/* --stream build
- name: Install browsers
run: pnpm exec playwright install --with-deps
- name: Test
run: pnpm t --recursive --stream --if-present