Skip to content

feat: add CI

feat: add CI #2

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.11.0
- uses: pnpm/action-setup@v2
with:
version: 8.15.1
- run: pnpm install
- run: pnpm --filter pnpm-sync-lib run build
- run: pnpm --filter pnpm-sync-lib run test