Skip to content

Commit

Permalink
writing jobs in front-end.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadi38 committed Jan 29, 2024
1 parent 8d4f192 commit 9807a58
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/front-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ jobs:
steps:
- name: Checkout code
working-directory: ./client
uses: actions/checkout@v3
uses: actions/checkout@v3

- name: Install dependencies
run: npm install

- name: Build app
run: npm run build
6 changes: 3 additions & 3 deletions client/build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"files": {
"main.css": "/static/css/main.b7c92c91.css",
"main.js": "/static/js/main.70b47816.js",
"main.js": "/static/js/main.bb497479.js",
"index.html": "/index.html",
"main.b7c92c91.css.map": "/static/css/main.b7c92c91.css.map",
"main.70b47816.js.map": "/static/js/main.70b47816.js.map"
"main.bb497479.js.map": "/static/js/main.bb497479.js.map"
},
"entrypoints": [
"static/css/main.b7c92c91.css",
"static/js/main.70b47816.js"
"static/js/main.bb497479.js"
]
}
2 changes: 1 addition & 1 deletion client/build/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"/><link rel="manifest" href="/manifest.json"/><title>React App</title><script defer="defer" src="/static/js/main.70b47816.js"></script><link href="/static/css/main.b7c92c91.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"/><link rel="manifest" href="/manifest.json"/><title>React App</title><script defer="defer" src="/static/js/main.bb497479.js"></script><link href="/static/css/main.b7c92c91.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/src/Videos.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ function Videos(props) {
<iframe
width="350"
height="200"
src={`https://www.youtube.com/embed/${videoId}`}
src={`http://www.youtube.com/embed/${videoId}`}
title="YouTube video player"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
Expand Down

0 comments on commit 9807a58

Please sign in to comment.