Skip to content

Update README.md

Update README.md #21

Workflow file for this run

on:
push:
branches:
- main
- develop
pull_request:
name: Integration
jobs:
type-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Setup 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
- name: Build Test
run: pnpm turbo test