WIP: components-first-release #32
Workflow file for this run
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
name: Ci-Tests | |
on: | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- 'src/**' | |
- 'test/**' | |
- 'shadow-cljs.edn' | |
- 'resources/**' | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os-version: [ubuntu-latest] | |
node-version: [16.x] | |
runs-on: ${{ matrix.os-version }} | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v4 | |
- name: Prepare java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Install clojure cli | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: 1.11.1.1113 | |
- name: Test ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.8.0 | |
- run: | | |
npm ci | |
npm run ci:tests |