Skip to content

[RE-OPEN] Fix: user profile website redirection bug #72

[RE-OPEN] Fix: user profile website redirection bug

[RE-OPEN] Fix: user profile website redirection bug #72

Workflow file for this run

name: Node Build and Run
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
npm install
- name: Run Linter
run: |
npm run lint:check
- name: Build project
run: |
npm run build