Skip to content

Commit

Permalink
fix for faq.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamás committed Nov 22, 2023
1 parent 7049fb4 commit 934d7b4
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 81 deletions.
80 changes: 40 additions & 40 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,47 +4,47 @@ name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push request events but only for the main branch
push:
branches: [dev]
# Triggers the workflow on push request events but only for the main branch
push:
branches: [dev]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out latest code
uses: actions/checkout@v2

# Grab the required version of NodeJS
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: "18.17.0"

# Install all the Node dependencies for Gatsby, using your package.json file.
- name: Install Dependencies
run: npm install --legacy-peer-deps

# Speaks for itself no?
- name: Build Gatsby Site
run: npm run build

# This was the hardest part for me to figure out - see article for more details
- name: Install Deployment SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{secrets.deploy_key}}
known_hosts: ${{secrets.known_hosts}}

# Finally, deploy it to your very own server
- name: Deploy To Live
run: rsync -avzh --delete -e 'ssh' public/* --rsync-path='mkdir -p ${{secrets.target_dir_dev}} && rsync' ${{secrets.ssh_user}}@${{secrets.ssh_host}}:${{secrets.target_dir_dev}}
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out latest code
uses: actions/checkout@v2

# Grab the required version of NodeJS
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: "18.17.0"

# Install all the Node dependencies for Gatsby, using your package.json file.
- name: Install Dependencies
run: npm install --legacy-peer-deps

# Speaks for itself no?
- name: Build Gatsby Site
run: npm run build

# This was the hardest part for me to figure out - see article for more details
- name: Install Deployment SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{secrets.deploy_key}}
known_hosts: ${{secrets.known_hosts}}

# Finally, deploy it to your very own server
- name: Deploy To Live
run: rsync -avzh --delete -e 'ssh' public/* --rsync-path='mkdir -p ${{secrets.target_dir_dev}} && rsync' ${{secrets.ssh_user}}@${{secrets.ssh_host}}:${{secrets.target_dir_dev}}
80 changes: 40 additions & 40 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,47 +4,47 @@ name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push request events but only for the main branch
push:
branches: [main]
# Triggers the workflow on push request events but only for the main branch
push:
branches: [main]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out latest code
uses: actions/checkout@v2

# Grab the required version of NodeJS
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: "18.17.0"

# Install all the Node dependencies for Gatsby, using your package.json file.
- name: Install Dependencies
run: npm install --legacy-peer-deps

# Speaks for itself no?
- name: Build Gatsby Site
run: npm run build

# This was the hardest part for me to figure out - see article for more details
- name: Install Deployment SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{secrets.deploy_key}}
known_hosts: ${{secrets.known_hosts}}

# Finally, deploy it to your very own server
- name: Deploy To Live
run: rsync -avzh --delete -e 'ssh' public/* --rsync-path='mkdir -p ${{secrets.target_dir_main}} && rsync' ${{secrets.ssh_user}}@${{secrets.ssh_host}}:${{secrets.target_dir_main}}
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out latest code
uses: actions/checkout@v2

# Grab the required version of NodeJS
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: "18.17.0"

# Install all the Node dependencies for Gatsby, using your package.json file.
- name: Install Dependencies
run: npm install --legacy-peer-deps

# Speaks for itself no?
- name: Build Gatsby Site
run: npm run build

# This was the hardest part for me to figure out - see article for more details
- name: Install Deployment SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{secrets.deploy_key}}
known_hosts: ${{secrets.known_hosts}}

# Finally, deploy it to your very own server
- name: Deploy To Live
run: rsync -avzh --delete -e 'ssh' public/* --rsync-path='mkdir -p ${{secrets.target_dir_main}} && rsync' ${{secrets.ssh_user}}@${{secrets.ssh_host}}:${{secrets.target_dir_main}}
9 changes: 8 additions & 1 deletion src/components/modules/faq.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ const Faq = (props) => {
></div>
</div>
<div className={"col-auto"}>
<button className={"dropdown"} onClick={toggleClass} tabIndex={0} onKeyDown={toggleClass} aria-label='Dropdown Button' />
<div
role='button'
className={"dropdown"}
onClick={toggleClass}
onKeyDown={toggleClass}
aria-label='Dropdown Button'
tabIndex={0}
/>
</div>
</div>
);
Expand Down

0 comments on commit 934d7b4

Please sign in to comment.