-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from n2o/release/1.4.0
Release v1.4.0
- Loading branch information
Showing
10 changed files
with
172 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: Clojure CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
|
@@ -9,7 +8,7 @@ jobs: | |
- uses: actions/checkout@v1 | ||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: '13' | ||
java-version: '14' | ||
- name: Setup Clojure | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
|
@@ -25,4 +24,31 @@ jobs: | |
continue-on-error: true | ||
with: | ||
clj-kondo-args: --lint src | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: '14' | ||
- name: Setup Clojure | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
tools-deps: '1.10.1.469' | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12' | ||
- name: Build Project | ||
run: | | ||
make web | ||
- name: Deploy 🚀 | ||
uses: JamesIves/github-pages-deploy-action@releases/v3 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: gh-pages # The branch the action should deploy to. | ||
FOLDER: resources/public # The folder the action should deploy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{:deps {org.clojure/clojure {:mvn/version "1.10.1"} | ||
org.clojure/clojurescript {:mvn/version "1.10.520"} | ||
com.bhauman/figwheel-main {:mvn/version "0.2.4"} | ||
org.clojure/clojurescript {:mvn/version "1.10.773"} | ||
com.bhauman/figwheel-main {:mvn/version "0.2.9"} | ||
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"} | ||
org.clojure/core.async {:mvn/version "1.1.587"} | ||
org.clojure/core.async {:mvn/version "1.2.603"} | ||
hiccups {:mvn/version "0.3.0"}} | ||
:paths ["src" "target" "resources"] | ||
:aliases {:fig {:main-opts ["-m" "figwheel.main" "-b" "dev" "--repl"]} | ||
:fig/simple {:main-opts ["-m" "figwheel.main" "-O" "simple" "-bo" "dev"]} | ||
:fig/min {:main-opts ["-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]} | ||
:outdated {:extra-deps {olical/depot {:mvn/version "1.8.4"}} | ||
:outdated {:extra-deps {olical/depot {:mvn/version "2.0.1"}} | ||
:main-opts ["-m" "depot.outdated.main"]}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.statement { | ||
color: #ffc107; | ||
} | ||
|
||
.issue { | ||
color: #546e7a; | ||
} | ||
|
||
.pro { | ||
color: #81c784; | ||
} | ||
|
||
.con { | ||
color: #f44336; | ||
} | ||
|
||
.mr { | ||
margin-right: 0.5em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="node_modules/reveal.js/css/reveal.css"> | ||
<link rel="stylesheet" href="node_modules/reveal.js/css/theme/white.css"> | ||
<link rel="icon" href="img/favicon.ico"> | ||
</head> | ||
<body> | ||
<div class="reveal"> | ||
<div class="slides" id="slides"></div> | ||
</div> | ||
<html lang="en"> | ||
<head> | ||
<title>reveal-cljs</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="node_modules/reveal.js/dist/reset.css" rel="stylesheet"> | ||
<link href="node_modules/reveal.js/dist/reveal.css" rel="stylesheet"> | ||
<link href="node_modules/reveal.js/dist/theme/black.css" rel="stylesheet"> | ||
|
||
<script src="node_modules/reveal.js/js/reveal.js" type="text/javascript"></script> | ||
<script src="cljs-out/dev-main.js" type="text/javascript"></script> | ||
</body> | ||
<!-- Optional --> | ||
<link rel="stylesheet" href="node_modules/bootstrap-4-grid/css/grid.min.css"> | ||
<script src="node_modules/@fortawesome/fontawesome-free/js/all.min.js"></script> | ||
|
||
<link rel="stylesheet" href="css/main.css"> | ||
|
||
<link rel="icon" href="img/favicon.ico"> | ||
</head> | ||
<body> | ||
<div class="reveal"> | ||
<div class="slides" id="slides"></div> | ||
</div> | ||
|
||
<script src="node_modules/reveal.js/dist/reveal.js" type="text/javascript"></script> | ||
<script src="node_modules/reveal.js/plugin/highlight/highlight.js" type="text/javascript"></script> | ||
<link href="node_modules/reveal.js/plugin/highlight/zenburn.css" rel="stylesheet"> | ||
<script src="node_modules/reveal.js/plugin/notes/notes.js" type="text/javascript"></script> | ||
<script src="cljs-out/dev-main.js" type="text/javascript"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters