@payfit/nx-core 4.17.0 → 4.17.1-beta-npx.0
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/package.json
CHANGED
|
@@ -24,7 +24,7 @@ references:
|
|
|
24
24
|
workflow-name: build-test-release
|
|
25
25
|
|
|
26
26
|
jobs:
|
|
27
|
-
|
|
27
|
+
install_packages:
|
|
28
28
|
<<: *setup_env_node
|
|
29
29
|
steps:
|
|
30
30
|
- checkout
|
|
@@ -35,29 +35,28 @@ jobs:
|
|
|
35
35
|
steps:
|
|
36
36
|
- checkout
|
|
37
37
|
- node/install-packages: *install_packages
|
|
38
|
-
- run:
|
|
39
|
-
- run: yarn lint
|
|
38
|
+
- run: npx nx run-many -t lint
|
|
40
39
|
|
|
41
40
|
nx-conformance:
|
|
42
41
|
<<: *setup_env_node
|
|
43
42
|
steps:
|
|
44
43
|
- checkout
|
|
45
44
|
- node/install-packages: *install_packages
|
|
46
|
-
- run:
|
|
45
|
+
- run: npx nx-cloud record -- npx nx-cloud conformance:check
|
|
47
46
|
|
|
48
47
|
nx-sync:
|
|
49
48
|
<<: *setup_env_node
|
|
50
49
|
steps:
|
|
51
50
|
- checkout
|
|
52
51
|
- node/install-packages: *install_packages
|
|
53
|
-
- run:
|
|
52
|
+
- run: npx nx-cloud record -- npx nx sync:check
|
|
54
53
|
|
|
55
54
|
format:
|
|
56
55
|
<<: *setup_env_node
|
|
57
56
|
steps:
|
|
58
57
|
- checkout
|
|
59
58
|
- node/install-packages: *install_packages
|
|
60
|
-
- run:
|
|
59
|
+
- run: npx nx-cloud record -- npx nx format:check
|
|
61
60
|
|
|
62
61
|
build:
|
|
63
62
|
<<: *setup_env_node
|
|
@@ -65,7 +64,7 @@ jobs:
|
|
|
65
64
|
- checkout
|
|
66
65
|
- node/install-packages: *install_packages
|
|
67
66
|
- nx/set-shas: *nx_set_shas_option
|
|
68
|
-
- run:
|
|
67
|
+
- run: npx nx run-many -t build
|
|
69
68
|
- persist_to_workspace:
|
|
70
69
|
root: '.'
|
|
71
70
|
paths:
|
|
@@ -77,7 +76,7 @@ jobs:
|
|
|
77
76
|
- checkout
|
|
78
77
|
- node/install-packages: *install_packages
|
|
79
78
|
- nx/set-shas: *nx_set_shas_option
|
|
80
|
-
- run:
|
|
79
|
+
- run: npx nx run-many -t test
|
|
81
80
|
- store_test_results:
|
|
82
81
|
path: test-results
|
|
83
82
|
|
|
@@ -117,11 +116,11 @@ jobs:
|
|
|
117
116
|
tbot start -c .github/teleport/shared-charts.conf
|
|
118
117
|
if [[ "${CIRCLE_BRANCH}" == "main" || "${CIRCLE_BRANCH}" == "master" ]]; then
|
|
119
118
|
echo "Publishing release"
|
|
120
|
-
|
|
119
|
+
npx nx release --yes
|
|
121
120
|
else
|
|
122
121
|
echo "Publishing ephemeral"
|
|
123
|
-
|
|
124
|
-
|
|
122
|
+
npx nx release prerelease --preid beta-${CIRCLE_BRANCH//[^a-zA-Z0-9]/-} --skip-publish
|
|
123
|
+
npx nx release publish --tag beta
|
|
125
124
|
fi
|
|
126
125
|
|
|
127
126
|
workflows:
|
|
@@ -132,38 +131,38 @@ workflows:
|
|
|
132
131
|
name: github_authenticate
|
|
133
132
|
context:
|
|
134
133
|
- NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
135
|
-
-
|
|
134
|
+
- install_packages:
|
|
136
135
|
context: NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
137
136
|
|
|
138
137
|
- lint:
|
|
139
138
|
context: NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
140
139
|
requires:
|
|
141
|
-
-
|
|
140
|
+
- install_packages
|
|
142
141
|
|
|
143
142
|
- nx-sync:
|
|
144
143
|
context: NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
145
144
|
requires:
|
|
146
|
-
-
|
|
145
|
+
- install_packages
|
|
147
146
|
|
|
148
147
|
- format:
|
|
149
148
|
context: NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
150
149
|
requires:
|
|
151
|
-
-
|
|
150
|
+
- install_packages
|
|
152
151
|
|
|
153
152
|
- nx-conformance:
|
|
154
153
|
context: NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
155
154
|
requires:
|
|
156
|
-
-
|
|
155
|
+
- install_packages
|
|
157
156
|
|
|
158
157
|
- build:
|
|
159
158
|
context: NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
160
159
|
requires:
|
|
161
|
-
-
|
|
160
|
+
- install_packages
|
|
162
161
|
|
|
163
162
|
- test:
|
|
164
163
|
context: NX_COMMON_PACKAGES # TSH config / AWS credentials / NPM token
|
|
165
164
|
requires:
|
|
166
|
-
-
|
|
165
|
+
- install_packages
|
|
167
166
|
|
|
168
167
|
<% if (queuing_release) { %>
|
|
169
168
|
- publish:
|