Skip to content

Fix issue where insurance messages would appear as received if you only lost gear you were wearing #245

Fix issue where insurance messages would appear as received if you only lost gear you were wearing

Fix issue where insurance messages would appear as received if you only lost gear you were wearing #245

Workflow file for this run

name: Run Code Linter
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
biome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: false
- name: Checkout LFS
run: git lfs pull
- uses: actions/setup-node@v4
with:
node-version-file: "project/.nvmrc"
cache: "npm"
cache-dependency-path: "project/package.json"
- name: Install NPM Dependencies
run: npm install
working-directory: ./project
- name: Run Linter
run: npm run lint
working-directory: ./project