-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af8b5d4
commit 912fc4d
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,10 +35,10 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
- name: Install monorepo packages | ||
uses: pnpm/action-setup@v2 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
version: 8 | ||
- run: pnpm install --frozen-lockfile | ||
node-version: 21 | ||
- run: npm install | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
|
@@ -50,10 +50,10 @@ jobs: | |
python -m pip install --upgrade pip | ||
pip install -r requirements-pip.txt | ||
pip install -r requirements-dev.txt | ||
- run: pnpm nx run-many --target=install | ||
- run: npx nx run-many --target=install | ||
|
||
- name: Test all projects | ||
run: pnpm nx run-many --target=test | ||
run: npx nx run-many --target=test | ||
|
||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
|