upgrade cljs, now cljs build is split out #60
This file contains hidden or 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
| name: build | |
| on: | |
| push: | |
| paths-ignore: | |
| - '*.md' | |
| pull_request: | |
| paths-ignore: | |
| - '*.md' | |
| jobs: | |
| clj-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v1 | |
| - name: Prepare java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '8' | |
| - name: Install clojure tools | |
| uses: DeLaGuardo/setup-clojure@13.0 | |
| with: | |
| lein: 2.9.1 | |
| - name: Run JVM tests | |
| run: lein test | |
| bb-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v1 | |
| - name: Prepare java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '8' | |
| - name: Install clojure tools | |
| uses: DeLaGuardo/setup-clojure@13.0 | |
| with: | |
| bb: latest | |
| - name: Run babashka tests | |
| run: | | |
| bb test:bb | |
| cljs-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v1 | |
| - name: Prepare java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Install clojure tools | |
| uses: DeLaGuardo/setup-clojure@13.0 | |
| with: | |
| lein: 2.9.1 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Run node tests | |
| run: lein doo node once |