-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (56 loc) · 1.67 KB
/
buildMocks.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
# Runs compatibility tests
name: Build Backward Compatibility Mocks
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
create:
jobs:
test:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
name: Backward Compatibility Tests
strategy:
matrix:
node: ["20.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout tkey repo
uses: actions/checkout@v3
with:
path: ./tkey
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies, pack
run: |
cd ./tkey
npm ci
npm run pack:lerna
- name: Clone comp tests
uses: actions/checkout@master
with:
repository: tkey/backward-compatibility-tests
path: ./backward-compatibility-tests
- name: Setup comp tests
run: |
cd ./backward-compatibility-tests
npm i
for filename in ../tkey/packages/* ; do
echo "installing $filename" || continue
# ... install packed packages
packagename="`ls ${filename}| grep tkey`"
npm i "${filename}/${packagename}"
done
- name: Running comp tests
run: |
cd ./backward-compatibility-tests
npm run build-mocks
- uses: EndBug/add-and-commit@v7
with:
author_name: Auto
branch: master
cwd: "./backward-compatibility-tests"
message: "Building Mocks from tkey workflow"
push: true