tangled
alpha
login
or
join now
gm112.bsky.social
/
cruxt
0
fork
atom
Its a crux!
0
fork
atom
overview
issues
pulls
pipelines
ci: update gh action to use :all commands
Jonathan Basniak
6 months ago
a86ac1b9
0510baa1
+3
-3
1 changed file
expand all
collapse all
unified
split
.github
actions
build-pnpm-workspace
action.yml
+3
-3
.github/actions/build-pnpm-workspace/action.yml
···
72
72
shell: bash
73
73
run: |
74
74
echo "Building Projects"
75
75
-
pnpm run --parallel build & build_pid=$!
75
75
+
pnpm run build:all & build_pid=$!
76
76
77
77
echo "Validating Code Formatting"
78
78
-
pnpm run --parallel lint & lint_pid=$!
78
78
+
pnpm run lint:all & lint_pid=$!
79
79
80
80
echo "Testing Projects"
81
81
-
pnpm run --parallel test & test_pid=$!
81
81
+
pnpm run test:all & test_pid=$!
82
82
83
83
wait $build_pid; build_exit_code=$?
84
84
wait $lint_pid; lint_exit_code=$?