@toptal/davinci-skeleton 4.8.1 → 4.8.2
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 4.8.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1204](https://github.com/toptal/davinci/pull/1204) [`4c913367`](https://github.com/toptal/davinci/commit/4c91336791c1d1e9ff15fddf661cafe3fbf33a8e) Thanks [@dmaklygin](https://github.com/dmaklygin)! - improve performance of unit tests GH workflow
|
|
8
|
+
|
|
3
9
|
## 4.8.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -5,21 +5,57 @@ on:
|
|
|
5
5
|
types: [opened, synchronize, reopened, edited]
|
|
6
6
|
branches: [master]
|
|
7
7
|
|
|
8
|
+
env:
|
|
9
|
+
GITHUB_TOKEN: ${{ secrets.TOPTAL_DEVBOT_TOKEN }}
|
|
10
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN_READ_ONLY }}
|
|
11
|
+
PARALLEL_GROUPS: 3
|
|
12
|
+
|
|
13
|
+
concurrency:
|
|
14
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
15
|
+
cancel-in-progress: true
|
|
16
|
+
|
|
8
17
|
jobs:
|
|
9
|
-
|
|
18
|
+
create-matrix:
|
|
19
|
+
name: Create:Matrix
|
|
20
|
+
runs-on: [ 'org/toptal', 'os/linux', 'arch/x64', 'size/large' ]
|
|
21
|
+
outputs:
|
|
22
|
+
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
23
|
+
steps:
|
|
24
|
+
- name: Checkout project
|
|
25
|
+
uses: actions/checkout@v2
|
|
26
|
+
|
|
27
|
+
- name: Checkout davinci GHAs
|
|
28
|
+
uses: actions/checkout@v2
|
|
29
|
+
with:
|
|
30
|
+
repository: toptal/davinci-github-actions
|
|
31
|
+
token: ${{ env.GITHUB_TOKEN }}
|
|
32
|
+
path: ./.github/actions/
|
|
33
|
+
|
|
34
|
+
- name: Run Matrix
|
|
35
|
+
id: set-matrix
|
|
36
|
+
uses: ./.github/actions/create-matrix
|
|
37
|
+
with:
|
|
38
|
+
parallel_groups: ${{ env.PARALLEL_GROUPS }}
|
|
39
|
+
|
|
40
|
+
unit-tests:
|
|
10
41
|
name: Check:UnitTests
|
|
11
|
-
runs-on:
|
|
42
|
+
runs-on: [ 'org/toptal', 'os/linux', 'arch/x64', 'size/large' ]
|
|
43
|
+
strategy:
|
|
44
|
+
fail-fast: false
|
|
45
|
+
matrix:
|
|
46
|
+
include: ${{ fromJson(needs.create-matrix.outputs.matrix) }}
|
|
47
|
+
needs: [ create-matrix ]
|
|
12
48
|
env:
|
|
13
|
-
|
|
49
|
+
GROUP_INDEX: ${{ matrix.index }}
|
|
50
|
+
GROUP_TOTAL: ${{ strategy.job-total }}
|
|
14
51
|
steps:
|
|
15
|
-
- name: Cancel Previous Runs
|
|
16
|
-
uses: styfle/cancel-workflow-action@dffcefda964529302c673388c65a8137995e9603
|
|
17
|
-
|
|
18
52
|
- name: Checkout
|
|
19
53
|
uses: actions/checkout@v2
|
|
20
54
|
|
|
21
55
|
- name: Setup node
|
|
22
56
|
uses: actions/setup-node@v2
|
|
57
|
+
with:
|
|
58
|
+
node-version: '14.17'
|
|
23
59
|
|
|
24
60
|
- uses: actions/checkout@v2
|
|
25
61
|
with:
|
package/package.json
CHANGED