Skip to content

Commit

Permalink
fix: Fix to use pnpm instead of yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz committed Apr 2, 2024
1 parent 2b5a413 commit e46b338
Show file tree
Hide file tree
Showing 3 changed files with 1,037 additions and 992 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,22 @@ jobs:
with:
lein: '2.11.2'

- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8

- uses: actions/setup-node@v4
with:
node-version: '18.16.1'
cache: 'yarn'
cache-dependency-path: yarn.lock

cache: pnpm

- name: Show versions
run: |
java -version
lein version
yarn -v
pnpm -v
- name: Cache dependencies
uses: actions/cache@v4
Expand All @@ -62,7 +66,7 @@ jobs:
restore-keys: |
clj-cache-test-
- run: yarn install
- run: pnpm i --frozen-lockfile

- name: Run tests
run: make test
Loading

0 comments on commit e46b338

Please sign in to comment.