feat: init set up for pnpm-sync-api-test #59
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: Install Depdendencies | |
run: pnpm install | |
- name: Build and run tests for pnpm-sync-lib | |
run: pnpm --filter pnpm-sync-lib run build && pnpm --filter pnpm-sync-lib run test | |
- name: Build and run tests for pnpm-sync | |
run: pnpm --filter pnpm-sync run build && pnpm --filter pnpm-sync run test | |
- name: Build and run tests for pnpm-sync-api-demo | |
run: pnpm --filter pnpm-sync-api-demo run build && pnpm --filter pnpm-sync-api-demo run test |