From 120113f2760a38144aeb487bc0a96b67107d268c Mon Sep 17 00:00:00 2001 From: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com> Date: Wed, 19 Feb 2025 19:57:28 -0300 Subject: [PATCH] update dependencies (#1772) * update dependencies * fix action * update * update --- .github/workflows/test_node.yaml | 11 ++++++++++- package-lock.json | 21 ++++++++++----------- package.json | 16 ++++++++-------- 3 files changed, 28 insertions(+), 20 deletions(-) diff --git a/.github/workflows/test_node.yaml b/.github/workflows/test_node.yaml index 18534356..64648b2d 100644 --- a/.github/workflows/test_node.yaml +++ b/.github/workflows/test_node.yaml @@ -18,4 +18,13 @@ jobs: - run: npm ci - run: npm run auto_downport - run: npm run auto_transpile - - run: npm run express + - run: npm run express & + - name: Check for errors + run: | + sleep 10 + if ! curl -s http://localhost:3000 | grep -q "Error"; then + echo "No errors detected, stopping the workflow." + exit 0 + else + echo "Errors detected, continuing the workflow." + fi \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 234fbe4b..c37e0aa6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,15 +9,15 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "npm-check-updates": "^17.1.13" + "npm-check-updates": "^17.1.14" }, "devDependencies": { - "@abaplint/cli": "^2.113.86", - "@abaplint/database-sqlite": "^2.10.20", - "@abaplint/runtime": "^2.10.23", - "@abaplint/transpiler-cli": "^2.10.23", - "@playwright/test": "^1.49.1", - "@types/node": "^22.10.5", + "@abaplint/cli": "^2.113.104", + "@abaplint/database-sqlite": "^2.10.24", + "@abaplint/runtime": "^2.10.24", + "@abaplint/transpiler-cli": "^2.10.24", + "@playwright/test": "^1.50.1", + "@types/node": "^22.13.4", "buffer": "^6.0.3", "copy-webpack-plugin": "^12.0.2", "express": "^4.21.2", @@ -29,11 +29,10 @@ } }, "node_modules/@abaplint/cli": { - "version": "2.113.103", - "resolved": "https://registry.npmjs.org/@abaplint/cli/-/cli-2.113.103.tgz", - "integrity": "sha512-L5R0lNbef3eNsIFlU0DJpBbsYZi+Sq6ptcBkPV4jsEbj1Yk5lG5PNBN0OZYnQ4BcTeJ+CGNBqzcRxAXfB9CT7A==", + "version": "2.113.104", + "resolved": "https://registry.npmjs.org/@abaplint/cli/-/cli-2.113.104.tgz", + "integrity": "sha512-JFFqyBdy/B4vtfz32e74ZUFQEQFyiUKg8jdDrfNjJPSOBIeVjPZzW5YxIjfym6e4DZHViNW5ctFCx8KvNoXclA==", "dev": true, - "license": "MIT", "bin": { "abaplint": "abaplint" }, diff --git a/package.json b/package.json index dfc9624e..69b2667e 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "rename": "npm ci && abaplint .github/abaplint/rename_test.jsonc --rename", "express": "node node/srv/express.mjs", - "unit": "echo RUNNING && node output/index.mjs" + "unit": "echo RUNNING && node node/output/index.mjs" }, "repository": { @@ -25,11 +25,11 @@ }, "homepage": "wwww.abap2UI5.org", "devDependencies": { - "@abaplint/cli": "^2.113.86", - "@abaplint/database-sqlite": "^2.10.20", - "@abaplint/runtime": "^2.10.23", - "@abaplint/transpiler-cli": "^2.10.23", - "@types/node": "^22.10.5", + "@abaplint/cli": "^2.113.104", + "@abaplint/database-sqlite": "^2.10.24", + "@abaplint/runtime": "^2.10.24", + "@abaplint/transpiler-cli": "^2.10.24", + "@types/node": "^22.13.4", "buffer": "^6.0.3", "copy-webpack-plugin": "^12.0.2", "express": "^4.21.2", @@ -38,9 +38,9 @@ "web-encoding": "^1.1.5", "webpack-cli": "^6.0.1", "webpack-dev-server": "^5.2.0", - "@playwright/test": "^1.49.1" + "@playwright/test": "^1.50.1" }, "dependencies": { - "npm-check-updates": "^17.1.13" + "npm-check-updates": "^17.1.14" } } \ No newline at end of file