Skip to content

fix: second instance check #6144

fix: second instance check

fix: second instance check #6144

Workflow file for this run

name: Build Tests
# No need to run on master branch
on:
push:
branches: ["*", "!master"]
pull_request:
types: [opened, edited, synchronize, reopened]
branches: ["*", "!master"]
jobs:
test:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Setup Nodejs
uses: actions/setup-node@v5
with:
node-version: "22.19.0"
- name: Install Correct NPM Version
run: npm install -g [email protected]
- name: Checkout branch
uses: actions/checkout@v5
- name: Install Dependencies
run: npm install
- name: Lint
run: npx --no-install eslint . --quiet