Skip to content

Commit

Permalink
Change pnpm to npm to speed up action
Browse files Browse the repository at this point in the history
  • Loading branch information
Privat33r-dev committed May 4, 2024
1 parent a40d2fb commit 30b7544
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,17 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- uses: pnpm/action-setup@v3
with:
version: 9

- uses: actions/setup-node@v4
- name: Setup NodeJS ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "pnpm"
cache: "npm"
cache-dependency-path: tests/apollo-server/

- name: Install deps and run server
run: |
cd tests/apollo-server/
pnpm install
npm ci
node src/index.js &
- name: Wait for server
Expand Down

0 comments on commit 30b7544

Please sign in to comment.