@toptal/davinci-skeleton 6.0.3 → 6.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: Integration tests
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
pull_request:
|
|
@@ -51,7 +51,6 @@ jobs:
|
|
|
51
51
|
with:
|
|
52
52
|
parallel_groups: ${{ env.PARALLEL_GROUPS }}
|
|
53
53
|
parallel_matrix: ${{ env.PARALLEL_MATRIX }}
|
|
54
|
-
npm_token: ${{ env.NPM_TOKEN }}
|
|
55
54
|
|
|
56
55
|
outputs:
|
|
57
56
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
@@ -69,6 +68,7 @@ jobs:
|
|
|
69
68
|
GROUP_INDEX: ${{ matrix.index }}
|
|
70
69
|
GROUP_LOCATION: ${{ matrix.location }}
|
|
71
70
|
GROUP_PACKAGE: ${{ matrix.pkg }}
|
|
71
|
+
PARALLEL_GROUPS: ${{ matrix.total }}
|
|
72
72
|
steps:
|
|
73
73
|
- name: Checkout project
|
|
74
74
|
uses: actions/checkout@v2
|
|
@@ -93,8 +93,6 @@ jobs:
|
|
|
93
93
|
npm_token: ${{ env.NPM_TOKEN }}
|
|
94
94
|
|
|
95
95
|
- uses: ./.github/actions/integration-tests
|
|
96
|
-
env:
|
|
97
|
-
PARALLEL_GROUPS: ${{ matrix.total || env.PARALLEL_GROUPS }}
|
|
98
96
|
with:
|
|
99
97
|
command: ${{ steps.set-command.outputs.command }}
|
|
100
98
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1267](https://github.com/toptal/davinci/pull/1267) [`a2e88136`](https://github.com/toptal/davinci/commit/a2e8813627878c14888c6e24125d51e3c4450676) Thanks [@OndrejTuma](https://github.com/OndrejTuma)! - ---
|
|
8
|
+
|
|
9
|
+
### Integration tests workflow
|
|
10
|
+
|
|
11
|
+
- removed `npm_token` input from `create-matrix` action
|
|
12
|
+
- using `matrix[*].total` output from `create-matrix` action as a source of truth in parallel instances
|
|
13
|
+
|
|
14
|
+
### Unit Tests workflow
|
|
15
|
+
|
|
16
|
+
- using `matrix[*].total` output from `create-matrix` action as a source of truth in parallel instances
|
|
17
|
+
|
|
3
18
|
## 6.0.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED