@emartech/program-executor 3.14.0 → 3.16.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/.github/workflows/main.yaml +5 -3
- package/.nvmrc +1 -1
- package/docker-compose.yml +1 -1
- package/package.json +9 -9
|
@@ -7,7 +7,7 @@ on:
|
|
|
7
7
|
branches: [main]
|
|
8
8
|
|
|
9
9
|
env:
|
|
10
|
-
NPM_TOKEN: ${{ secrets.NPM_PUBLISHER_TOKEN }}
|
|
10
|
+
NPM_TOKEN: ${{ github.actor == 'dependabot[bot]' && secrets.NPM_DEPLOYER_TOKEN || secrets.NPM_PUBLISHER_TOKEN }}
|
|
11
11
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
12
12
|
CI_REPO_NAME: ${{ github.repository }}
|
|
13
13
|
CI_COMMIT_ID: ${{ github.sha }}
|
|
@@ -40,10 +40,10 @@ jobs:
|
|
|
40
40
|
gcloud beta emulators pubsub start --project=some-project-id --host-port=0.0.0.0:8085 &
|
|
41
41
|
- name: Check out repository
|
|
42
42
|
uses: actions/checkout@v4
|
|
43
|
-
- name: Use Node
|
|
43
|
+
- name: Use Node 24.12.0 version
|
|
44
44
|
uses: actions/setup-node@v3
|
|
45
45
|
with:
|
|
46
|
-
node-version: "
|
|
46
|
+
node-version: "24.12.0"
|
|
47
47
|
- name: Set NPM token
|
|
48
48
|
run: npm config set '//registry.npmjs.org/:_authToken' "${{ env.NPM_TOKEN }}"
|
|
49
49
|
- name: npm dependencies
|
|
@@ -61,6 +61,8 @@ jobs:
|
|
|
61
61
|
PUBSUB_TIMEOUT: 2000
|
|
62
62
|
|
|
63
63
|
dependabot-auto-merge:
|
|
64
|
+
if: ${{ vars.DEPENDABOT_AUTO_MERGE == 'true' }}
|
|
65
|
+
|
|
64
66
|
needs: test
|
|
65
67
|
runs-on: ubuntu-latest
|
|
66
68
|
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
24.12.0
|
package/docker-compose.yml
CHANGED
package/package.json
CHANGED
|
@@ -19,25 +19,25 @@
|
|
|
19
19
|
"author": "team-shopify@emarsys.com",
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@emartech/json-logger": "9.
|
|
23
|
-
"@emartech/pubsub-client-js": "^1.
|
|
24
|
-
"@emartech/rabbitmq-client": "5.
|
|
22
|
+
"@emartech/json-logger": "9.2.0",
|
|
23
|
+
"@emartech/pubsub-client-js": "^1.6.0",
|
|
24
|
+
"@emartech/rabbitmq-client": "5.11.0",
|
|
25
25
|
"camelcase-keys": "^6.2.2",
|
|
26
|
-
"graphql": "^16.
|
|
26
|
+
"graphql": "^16.12.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": "
|
|
29
|
+
"node": "24.12.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"dotenv": "^17.2.
|
|
33
|
-
"eslint": "^9.
|
|
32
|
+
"dotenv": "^17.2.3",
|
|
33
|
+
"eslint": "^9.39.1",
|
|
34
34
|
"eslint-config-emarsys": "5.1.0",
|
|
35
35
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
36
36
|
"eslint-plugin-security": "^3.0.1",
|
|
37
37
|
"jest": "29.0.0",
|
|
38
38
|
"knex": "^3.1.0",
|
|
39
39
|
"pg": "^8.16.3",
|
|
40
|
-
"semantic-release": "^
|
|
40
|
+
"semantic-release": "^25.0.2"
|
|
41
41
|
},
|
|
42
|
-
"version": "3.
|
|
42
|
+
"version": "3.16.0"
|
|
43
43
|
}
|