@stdlib/assert-is-regexp-string-cli 0.1.0 → 0.1.1
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/publish_cli.yml +10 -5
- package/README.md +2 -2
- package/package.json +9 -9
|
@@ -61,13 +61,15 @@ jobs:
|
|
|
61
61
|
|
|
62
62
|
# Checkout cli branch:
|
|
63
63
|
- name: 'Checkout cli branch'
|
|
64
|
-
|
|
64
|
+
# Pin action to full length commit SHA corresponding to v4.1.0
|
|
65
|
+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
|
|
65
66
|
with:
|
|
66
67
|
ref: cli
|
|
67
68
|
|
|
68
69
|
# Install Node.js:
|
|
69
70
|
- name: 'Install Node.js'
|
|
70
|
-
|
|
71
|
+
# Pin action to full length commit SHA corresponding to v3.8.1
|
|
72
|
+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
|
|
71
73
|
with:
|
|
72
74
|
node-version: 16
|
|
73
75
|
timeout-minutes: 5
|
|
@@ -120,7 +122,8 @@ jobs:
|
|
|
120
122
|
|
|
121
123
|
# Publish package to npm:
|
|
122
124
|
- name: 'Publish package to npm'
|
|
123
|
-
|
|
125
|
+
# Pin action to full length commit SHA corresponding to v2.2.2
|
|
126
|
+
uses: JS-DevTools/npm-publish@fe72237be0920f7a0cafd6a966c9b929c9466e9b
|
|
124
127
|
with:
|
|
125
128
|
token: ${{ secrets.NPM_TOKEN }}
|
|
126
129
|
access: public
|
|
@@ -132,7 +135,8 @@ jobs:
|
|
|
132
135
|
|
|
133
136
|
# Send status to Slack channel if job fails:
|
|
134
137
|
- name: 'Send status to Slack channel in case of failure'
|
|
135
|
-
|
|
138
|
+
# Pin action to full length commit SHA corresponding to v2.0.0
|
|
139
|
+
uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f
|
|
136
140
|
with:
|
|
137
141
|
status: ${{ job.status }}
|
|
138
142
|
steps: ${{ toJson(steps) }}
|
|
@@ -153,7 +157,8 @@ jobs:
|
|
|
153
157
|
|
|
154
158
|
# Cancel any running or queued workflow runs:
|
|
155
159
|
- name: 'Cancel running or queued workflow runs'
|
|
156
|
-
|
|
160
|
+
# Pin action to full length commit SHA corresponding to v0.11.0
|
|
161
|
+
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5
|
|
157
162
|
with:
|
|
158
163
|
workflow_id: >-
|
|
159
164
|
benchmark.yml,
|
package/README.md
CHANGED
|
@@ -173,8 +173,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
173
173
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-regexp-string-cli.svg
|
|
174
174
|
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-regexp-string-cli
|
|
175
175
|
|
|
176
|
-
[test-image]: https://github.com/stdlib-js/assert-is-regexp-string/actions/workflows/test.yml/badge.svg?branch=v0.1.
|
|
177
|
-
[test-url]: https://github.com/stdlib-js/assert-is-regexp-string/actions/workflows/test.yml?query=branch:v0.1.
|
|
176
|
+
[test-image]: https://github.com/stdlib-js/assert-is-regexp-string/actions/workflows/test.yml/badge.svg?branch=v0.1.1
|
|
177
|
+
[test-url]: https://github.com/stdlib-js/assert-is-regexp-string/actions/workflows/test.yml?query=branch:v0.1.1
|
|
178
178
|
|
|
179
179
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-regexp-string/main.svg
|
|
180
180
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-regexp-string?branch=main
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/assert-is-regexp-string-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Test if a value is a regular expression string.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@stdlib/cli-ctor": "^0.1.
|
|
29
|
-
"@stdlib/fs-read-file": "^0.1.
|
|
30
|
-
"@stdlib/process-read-stdin": "^0.1.
|
|
31
|
-
"@stdlib/regexp-eol": "^0.1.
|
|
32
|
-
"@stdlib/streams-node-stdin": "^0.1.
|
|
33
|
-
"@stdlib/utils-regexp-from-string": "^0.1.
|
|
34
|
-
"@stdlib/assert-is-regexp-string": "0.1.
|
|
28
|
+
"@stdlib/cli-ctor": "^0.1.1",
|
|
29
|
+
"@stdlib/fs-read-file": "^0.1.1",
|
|
30
|
+
"@stdlib/process-read-stdin": "^0.1.1",
|
|
31
|
+
"@stdlib/regexp-eol": "^0.1.1",
|
|
32
|
+
"@stdlib/streams-node-stdin": "^0.1.1",
|
|
33
|
+
"@stdlib/utils-regexp-from-string": "^0.1.1",
|
|
34
|
+
"@stdlib/assert-is-regexp-string": "0.1.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@stdlib/assert-is-browser": "^0.1.0",
|
|
38
38
|
"@stdlib/assert-is-windows": "^0.1.0",
|
|
39
39
|
"@stdlib/process-exec-path": "^0.1.0",
|
|
40
|
-
"@stdlib/string-replace": "^0.0
|
|
40
|
+
"@stdlib/string-replace": "^0.1.0",
|
|
41
41
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
42
42
|
"proxyquire": "^2.0.0",
|
|
43
43
|
"istanbul": "^0.4.1",
|