Skip to content

Redirect the user to login page if the token is not valid #489

Redirect the user to login page if the token is not valid

Redirect the user to login page if the token is not valid #489

Workflow file for this run

name: Build
on:
push:
branches:
[development_1.1, development_1.1_*]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: |
cd client
npm install -g pnpm
pnpm install
- name: Build
run: |
cd client
pnpm build