mirror of
https://github.com/penpot/penpot.git
synced 2026-07-24 15:08:24 +00:00
Replace removed test:js and test:jvm npm scripts with pnpm run test and direct clojure -M:dev:test invocation. AI-assisted-by: mimo-v2.5
9 lines
114 B
Bash
Executable File
9 lines
114 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
corepack enable;
|
|
corepack install;
|
|
pnpm install;
|
|
pnpm run test;
|
|
clojure -M:dev:test;
|