Skip to content

Prevent LoadingImage from showing up when resizing window #2

Prevent LoadingImage from showing up when resizing window

Prevent LoadingImage from showing up when resizing window #2

Workflow file for this run

name: Lint and Format Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install Dependencies
run: cd server && npm install && cd ../client && npm install
- name: Run ESLint
run: cd server && npm run lint && cd ../client && npm run lint
- name: Run Prettier
run: cd server && npm run pretty && cd ../client && npm run pretty