Skip to content

Commit

Permalink
Use npm in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rdgfuentes committed Jun 28, 2024
1 parent af8b5d4 commit 912fc4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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]
Expand Down

0 comments on commit 912fc4d

Please sign in to comment.