dash 3.21.0-dev.7 → 3.21.0-dev.8
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/.github/workflows/.env
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
DRIVE_BRANCH=
|
|
2
|
-
DAPI_BRANCH=
|
|
3
|
-
DASHMATE_BRANCH=
|
|
4
|
-
TEST_SUITE_BRANCH=
|
|
1
|
+
DRIVE_BRANCH=v0.21-dev
|
|
2
|
+
DAPI_BRANCH=v0.21-dev
|
|
3
|
+
# DASHMATE_BRANCH=
|
|
4
|
+
# TEST_SUITE_BRANCH=
|
|
@@ -26,7 +26,7 @@ jobs:
|
|
|
26
26
|
|
|
27
27
|
- uses: actions/setup-node@v2
|
|
28
28
|
with:
|
|
29
|
-
node-version: '
|
|
29
|
+
node-version: '16'
|
|
30
30
|
|
|
31
31
|
- name: Set up Docker BuildX
|
|
32
32
|
id: buildx
|
|
@@ -71,6 +71,9 @@ jobs:
|
|
|
71
71
|
- name: Check NPM package lock version is updated
|
|
72
72
|
uses: dashevo/gh-action-check-package-lock@v1
|
|
73
73
|
|
|
74
|
+
- name: Show NPM version
|
|
75
|
+
run: npm --version
|
|
76
|
+
|
|
74
77
|
- name: Install NPM dependencies
|
|
75
78
|
run: npm ci
|
|
76
79
|
|
|
@@ -129,12 +132,16 @@ jobs:
|
|
|
129
132
|
if: ${{ github.event_name == 'release' }}
|
|
130
133
|
steps:
|
|
131
134
|
- uses: actions/checkout@v2
|
|
132
|
-
|
|
135
|
+
|
|
136
|
+
- uses: actions/setup-node@v2
|
|
137
|
+
with:
|
|
138
|
+
node-version: '16'
|
|
139
|
+
|
|
133
140
|
- name: Check package version matches tag
|
|
134
141
|
uses: geritol/match-tag-to-package-version@0.1.0
|
|
135
142
|
env:
|
|
136
143
|
TAG_PREFIX: refs/tags/v
|
|
137
|
-
|
|
144
|
+
|
|
138
145
|
- name: Enable NPM cache
|
|
139
146
|
uses: actions/cache@v2
|
|
140
147
|
with:
|