Skip to content

Commit

Permalink
ci: adhere to default pipelines (#112)
Browse files Browse the repository at this point in the history
* ci: adhere to default pipelines

* fixup! ci: adhere to default pipelines

* fixup! ci: adhere to default pipelines
  • Loading branch information
TimoKramer authored Nov 24, 2023
1 parent e7bda5a commit 21b4852
Show file tree
Hide file tree
Showing 6 changed files with 2,655 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ workflows:
jobs:
- tools/setup:
context: docker-deploy
setup_cljs: false
setup_cljs: true
- tools/build:
context: docker-deploy
build_cljs: false
build_cljs: true
requires:
- tools/setup
- tools/format:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ public

.idea
*.iml
package-lock.json
17 changes: 0 additions & 17 deletions bin/run-cljs-tests

This file was deleted.

17 changes: 17 additions & 0 deletions bin/run-cljstests
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

set -o errexit
set -o pipefail

echo "Running tests for node"
rm out/node-tests.js 2>/dev/null || true
npx shadow-cljs release node-tests
node out/node-tests.js

echo
echo

echo "Running tests for browser"
rm target/*.js target/*.map 2>/dev/null || true
npx shadow-cljs release ci
npx karma start --single-run
File renamed without changes.
Loading

0 comments on commit 21b4852

Please sign in to comment.