Skip to content

Commit

Permalink
ci(frontend): fix frontend test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Oct 9, 2023
1 parent dafa94a commit 6d39da1
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/r-frontend_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,21 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- uses: pnpm/action-setup@v2
with:
version: 8
node-version: 18

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
node-version: 18
cache: "pnpm"
cache-dependency-path: "src/frontend/pnpm-lock.yaml"

- name: Setup pnpm
uses: pnpm/action-setup@v2.4.0
with:
package_json_file: src/frontend/package.json
version: 8.8.0
- name: Install dependencies
working-directory: src/frontend
run: pnpm install

- name: Test Frontend
working-directory: src/frontend
Expand Down

0 comments on commit 6d39da1

Please sign in to comment.