Skip to content

feat: Enhance navbar with login/logout functionality and account menu… #63

feat: Enhance navbar with login/logout functionality and account menu…

feat: Enhance navbar with login/logout functionality and account menu… #63

Workflow file for this run

name: Build and Test
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_VERSION: 18.x
REDIS_URL: ${{ secrets.REDIS_URL }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build