Skip to content

Commit

Permalink
Install npm dependencies in GitHub Actions
Browse files Browse the repository at this point in the history
The very first build failed because this was missing.
  • Loading branch information
mbland committed Dec 27, 2023
1 parent 059c05a commit e8e01ce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'

- name: Install dependencies
run: "pnpm install"

- name: Build and test
run: "pnpm test:ci"

Expand Down

0 comments on commit e8e01ce

Please sign in to comment.