-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0fd927c
Showing
16 changed files
with
3,403 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Build GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use Node.js 15.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 15.x | ||
|
||
- run: git branch -D ghpages | ||
continue-on-error: true | ||
|
||
- run: git checkout -b ghpages | ||
- run: rm .gitignore | ||
- run: mv .gitignore.ghpages .gitignore | ||
- run: npm ci | ||
- run: npm run build | ||
- run: git config user.name github-actions[bot] | ||
- run: git config user.email github-actions[bot]@users.noreply.github.com | ||
- run: git add -A | ||
- run: git commit -m "build GitHub Pages" | ||
- run: git push -f origin ghpages |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/node_modules/ | ||
/.build/ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/node_modules/ |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
|
||
|
||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"/> | ||
<title>Vowel Analysis</title> | ||
</head> | ||
|
||
|
||
<style> | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
</style> | ||
|
||
|
||
<body> | ||
<div id="app"></div> | ||
</body> | ||
|
||
|
||
<script src=".build/main.js"></script> | ||
|
||
</html> |
Oops, something went wrong.