-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
218 changed files
with
24,912 additions
and
42,444 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,16 +15,22 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node 16.x | ||
- name: Use Node 18.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16.11.0 | ||
|
||
node-version: 18.18.2 | ||
|
||
- name: set env | ||
run: | | ||
export NODE_OPTIONS=--openssl-legacy-provider | ||
- name: install dependency | ||
run: npm install --force | ||
|
||
- name: Run Build | ||
run: npm run build | ||
run: | | ||
export NODE_OPTIONS=--openssl-legacy-provider | ||
npm run build | ||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
|
@@ -40,7 +46,6 @@ jobs: | |
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,40 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="theme-color" content="#000000"> | ||
|
||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,500,500i,600,600i,700,700i&subset=latin-ext"> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json"> | ||
<link rel="icon" href="%PUBLIC_URL%/favicon.png" type="image/x-icon"> | ||
<meta charset="utf-8" /> | ||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#1A73E8" /> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="76x76" | ||
href="%PUBLIC_URL%/apple-icon.png" | ||
/> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
<title>BeSLighthouse</title> | ||
</head> | ||
<link | ||
rel="stylesheet" | ||
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp" | ||
rel="stylesheet" | ||
/> | ||
<script | ||
src="https://kit.fontawesome.com/42d5adcbca.js" | ||
crossorigin="anonymous" | ||
></script> | ||
|
||
<!-- Nepcha Analytics (nepcha.com) --> | ||
<!-- Nepcha is a easy-to-use web analytics. No cookies and fully compliant with GDPR, CCPA and PECR. --> | ||
<script | ||
defer | ||
data-site="YOUR_DOMAIN_HERE" | ||
src="https://api.nepcha.com/js/nepcha-analytics.js" | ||
></script> | ||
</head> | ||
<body> | ||
<noscript> | ||
You need to enable JavaScript to run this app. | ||
</noscript> | ||
|
||
<span id="root"></span> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.