-
Notifications
You must be signed in to change notification settings - Fork 173
38 lines (36 loc) · 1.09 KB
/
compatibility.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
on:
push:
branches:
- 'main'
name: Backwards Compatibility Check
env:
CYPRESS_CACHE_FOLDER: ~/cypress-binary-cache
GH_TOKEN: ${{ github.token }}
jobs:
prepare:
uses: ./.github/workflows/prepare.yml
with:
buildcache_key: compat_buildcache
secrets: inherit
compatibility:
name: Compatibility Tests
needs: prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.15.0'
- uses: actions/cache@v3
with:
path: |
~/tmp_build
~/cypress-binary-cache
key: compat_buildcache
- run: cp -r ~/tmp_build/* .
# - run: npm i -g lerna
# - run: lerna bootstrap --ci --force-local --ignore docs
# - run: lerna run bundle --ignore docs --scope luigi-client-private
# - run: lerna run bundle --ignore docs --scope @luigi-project/testing-utilities
#- run: lerna run bundle --ignore docs
- run: bash ./scripts/testCompatibility.sh --tag latest