Skip to content

fix nav menu in lower res screens #14

fix nav menu in lower res screens

fix nav menu in lower res screens #14

Workflow file for this run

# Documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
# Documentation: https://www.npmjs.com/package/gh-pages
name: Continuous Deployment
on:
push:
branches: [main]
pull_request:
types: [closed]
branches: [main]
jobs:
deploy:
name: Build and Deploy app to GitHub Pages
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true || github.ref == 'refs/heads/main'
steps:
- name: Checkout the code base
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}