fix: track repeat modes #29
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: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
paths-ignore: | |
- "docs/docs/**" | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build Monorepo | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code 🛎 | |
uses: actions/checkout@main | |
- name: Install pnpm | |
uses: pnpm/action-setup@master | |
with: | |
version: 9.9.0 | |
- name: Install Node | |
uses: actions/setup-node@main | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm run build | |
- name: Run Tests | |
run: pnpm run test | |
- name: Run prettier | |
run: pnpm run prettier | |
- name: Run ESLint | |
run: pnpm run lint |