-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (109 loc) · 3.03 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: Lint and tests
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
cljest-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: cljest
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.1.1224
- name: Link jest-preset-cljest
run: npm link ../jest-preset-cljest
- name: Install dependencies
run: |
make install
cd node_modules/jest-preset-cljest
npm install
cd ../..
- name: Lint
run: make lint
- name: Compile and run cljest tests
run: make jest-ci
cljest-analyze:
runs-on: ubuntu-latest
defaults:
run:
working-directory: cljest
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.1.1224
- name: Analyze with cljdoc-analyzer
run: make analyze
jest-preset-cljest-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: jest-preset-cljest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: Run JS tests
run: make test-ci
check-version-bumps:
runs-on: ubuntu-latest
outputs:
changed: ${{ steps.versions-bumped.outputs.any_changed }}
steps:
- uses: actions/checkout@v3
- name: Check if versions bumped
id: versions-bumped
uses: tj-actions/[email protected]
with:
files: |
cljest/build.edn
jest-preset-cljest/package.json
ensure-package-versions-match:
needs: check-version-bumps
if: needs.check-version-bumps.outputs.changed == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.1.1224
bb: 1.3.181
- name: Run ensure-package-versions-match script
run: scripts/ensure-package-versions-match.bb