From 6a41234fe6f687f424d4679d7af42799280ee9c7 Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Sun, 9 May 2021 09:16:27 +0200 Subject: [PATCH] update deps, use node 14 for CI (#4755) * update deps, use node 14 for CI * upd * fix * upd * upd * update config --- .github/workflows/ajson_mirror.yaml | 4 +++- .github/workflows/build.yml | 2 +- abap_transpile.json | 1 - package.json | 10 +++++----- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ajson_mirror.yaml b/.github/workflows/ajson_mirror.yaml index 1fa8154cd..3f735c617 100644 --- a/.github/workflows/ajson_mirror.yaml +++ b/.github/workflows/ajson_mirror.yaml @@ -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 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ffd6b9db4..0f202d38a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/abap_transpile.json b/abap_transpile.json index 31e847cd7..4ccae74de 100644 --- a/abap_transpile.json +++ b/abap_transpile.json @@ -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", diff --git a/package.json b/package.json index 11bc4beda..9201048af 100644 --- a/package.json +++ b/package.json @@ -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" } }