feat: Update seeds from A, A20 and A20+ #334
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: Common CI/CD | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "common/**" | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- "common/**" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8.15.6 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm --filter tachi-common... --filter . install | |
- name: Run Linter | |
run: pnpm --filter tachi-common lint | |
env: | |
NODE_ENV: "test" | |
- name: Run Tests | |
run: pnpm --filter tachi-common test | |
env: | |
NODE_ENV: "test" |