Skip to content

feat: add tio

feat: add tio #874

Workflow file for this run

name: Lint & Build
on:
- push
- pull_request
jobs:
lint_and_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/[email protected]
with:
version: latest
run_install: true
- run: pnpm lint
- run: pnpm build-all:ci