orc-me 1.1.6 → 1.1.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/npmpublish.yml +12 -4
- package/index.js +1 -1
- package/package.json +2 -2
|
@@ -12,9 +12,13 @@ on:
|
|
|
12
12
|
jobs:
|
|
13
13
|
build:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
|
+
|
|
16
|
+
# Skip Dependabot pull requests that fixes packages and vulnerabilities to trigger our CI/CD
|
|
17
|
+
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
18
|
+
|
|
15
19
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
17
|
-
- uses: actions/setup-node@
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
- uses: actions/setup-node@v3
|
|
18
22
|
with:
|
|
19
23
|
node-version: lts/*
|
|
20
24
|
- run: npm install
|
|
@@ -23,9 +27,13 @@ jobs:
|
|
|
23
27
|
publish-npm:
|
|
24
28
|
needs: build
|
|
25
29
|
runs-on: ubuntu-latest
|
|
30
|
+
|
|
31
|
+
# Skip Dependabot pull requests that fixes packages and vulnerabilities to trigger our CI/CD
|
|
32
|
+
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
33
|
+
|
|
26
34
|
steps:
|
|
27
|
-
- uses: actions/checkout@
|
|
28
|
-
- uses: actions/setup-node@
|
|
35
|
+
- uses: actions/checkout@v4
|
|
36
|
+
- uses: actions/setup-node@v3
|
|
29
37
|
with:
|
|
30
38
|
node-version: lts/*
|
|
31
39
|
registry-url: https://registry.npmjs.org/
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orc-me",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "Generate a random orc name",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
"author": "tuty",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"jest": "^
|
|
24
|
+
"jest": "^29.7.0"
|
|
25
25
|
}
|
|
26
26
|
}
|