Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: test CI #228

Closed
wants to merge 12 commits into from
9 changes: 8 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-

- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master

- name: Install python-setuptools
run: brew install python-setuptools

- name: Install dependencies and build
run: pnpm install --frozen-lockfile

Expand All @@ -52,4 +59,4 @@ jobs:
run: pnpm run lint

- name: Test
run: pnpm run test:ci --force
run: pnpm run test:ci --force
Loading