Skip to content

Fix react-sdk issue where isLoggedIn being set to false after successful token refresh #138

Fix react-sdk issue where isLoggedIn being set to false after successful token refresh

Fix react-sdk issue where isLoggedIn being set to false after successful token refresh #138

Workflow file for this run

name: Lint and Format
on:
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check Linter
run: yarn lint:check
- name: Check Formatting
run: yarn format:check