Skip to content

fix: Disable loader on replace state to handle cached redirection (#17) #1

fix: Disable loader on replace state to handle cached redirection (#17)

fix: Disable loader on replace state to handle cached redirection (#17) #1

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
Linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
- name: Use Node.js v18
uses: actions/setup-node@v3
with:
node-version: 18
check-latest: true
cache: yarn
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Run ESLint
run: yarn lint --fix=true
Building:
name: Compile source code
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
- name: Use Node.js v18
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Typecheck And Build Code
run: yarn typecheck && yarn build