update deps, use node 14 for CI (#4755)

* update deps, use node 14 for CI

* upd

* fix

* upd

* upd

* update config
This commit is contained in:
Lars Hvam 2021-05-09 09:16:27 +02:00 committed by GitHub
parent 33227e8f4b
commit 6a41234fe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 8 deletions

View File

@ -14,6 +14,8 @@ jobs:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: run
run: |
git clone https://github.com/abapGit/ajson_mirror.git
@ -29,5 +31,5 @@ jobs:
body: |
Automatic update from mirror
https://github.com/abapGit/ajson_mirror
Manually close and reopen the pull request to trigger CI

View File

@ -14,7 +14,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '14'
- name: Run npm steps
run: |
npm install

View File

@ -29,7 +29,6 @@
"zcx_abapgit_not_found",
"zcl_abapgit_time",
"zcx_abapgit_ajson_error",
"zif_abapgit_apack_definitions",
"zif_abapgit_auth",
"zif_abapgit_cts_api",
"zif_abapgit_definitions",

View File

@ -4,7 +4,7 @@
"test": "npm run eslint && npm run abaplint",
"merge": "abapmerge -f src/zabapgit.prog.abap -c zabapgit_standalone > zabapgit.abap",
"merge.ci": "cp zabapgit.abap ci/zabapgit_standalone.prog.abap && cd ci && abaplint --format codeframe && cd ..",
"unit": "rm -rf output && abap_transpile && echo RUNNING && node output/index.js",
"unit": "rm -rf output && abap_transpile && echo RUNNING && node output/index.mjs",
"abaplint": "abaplint --format codeframe",
"eslint": "eslint src",
"docker-build": "docker-compose -f test/docker-compose.yml build",
@ -17,10 +17,10 @@
"url": "git+https://github.com/abapGit/abapGit.git"
},
"devDependencies": {
"@abaplint/cli": "^2.74.11",
"@abaplint/transpiler-cli": "^1.2.28",
"@abaplint/runtime": "^1.2.28",
"@abaplint/cli": "^2.74.14",
"@abaplint/transpiler-cli": "^1.3.7",
"@abaplint/runtime": "^1.3.7",
"abapmerge": "^0.14.3",
"eslint": "^7.25.0"
"eslint": "^7.26.0"
}
}