From e8a347c09b1f30b9b974fab19295039c162a915f Mon Sep 17 00:00:00 2001 From: Maximillian Arruda Date: Fri, 10 Apr 2026 11:47:37 -0300 Subject: [PATCH 1/2] fix: update title in index.html to reflect project name --- front-end/src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front-end/src/index.html b/front-end/src/index.html index d2eb084a..5f78b135 100644 --- a/front-end/src/index.html +++ b/front-end/src/index.html @@ -3,7 +3,7 @@ - Ionic App + SouJava - Vagas Java From f85cfc1a9403fbdedeeb7c2603a7d712072bd0db Mon Sep 17 00:00:00 2001 From: Maximillian Arruda Date: Fri, 10 Apr 2026 11:49:06 -0300 Subject: [PATCH 2/2] chore: update Node.js version to 20.x and add NODE_OPTIONS for compatibility in scripts --- .github/workflows/build-test.yml | 2 +- .github/workflows/github-pages.yml | 2 +- front-end/package.json | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index c5a18baf..1e24efae 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [20.x] workDir: [./front-end] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index f7ddbbfc..35e57d64 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [20.x] workDir: [./front-end] base_href: [vagas-java] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ diff --git a/front-end/package.json b/front-end/package.json index 591a75bb..c36d6f5d 100644 --- a/front-end/package.json +++ b/front-end/package.json @@ -5,14 +5,14 @@ "homepage": "https://ionicframework.com/", "scripts": { "ng": "ng", - "start": "ng serve", - "build": "ng build", - "test": "ng test", + "start": "NODE_OPTIONS=--openssl-legacy-provider ng serve", + "build": "NODE_OPTIONS=--openssl-legacy-provider ng build", + "test": "NODE_OPTIONS=--openssl-legacy-provider ng test", "lint": "ng lint", "e2e": "ng e2e", "ci:clean": "rimraf ./dist", - "ci:test": "ng test --watch=false --browsers=ChromeHeadlessCI", - "ci:build": "ng build --configuration production" + "ci:test": "NODE_OPTIONS=--openssl-legacy-provider ng test --watch=false --browsers=ChromeHeadlessCI", + "ci:build": "NODE_OPTIONS=--openssl-legacy-provider ng build --configuration production" }, "private": true, "dependencies": {