Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
10 changes: 5 additions & 5 deletions front-end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion front-end/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="utf-8" />
<title>Ionic App</title>
<title>SouJava - Vagas Java</title>

<base href="/" />

Expand Down
Loading