feat: Remove unnecessary build processes and remove api-server package. #3
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
on: | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- "packages/client-a/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Set up Yarn 4.2.2 | |
run: corepack prepare yarn@4.2.2 --activate | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn test:a |