Skip to content

CMR-10146: Making sure validBbox compares numbers and not strings #172

CMR-10146: Making sure validBbox compares numbers and not strings

CMR-10146: Making sure validBbox compares numbers and not strings #172

Workflow file for this run

name: Linting
on:
pull_request:
branches: ["master"]
jobs:
Lint:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18]
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install Dependencies
run: npm install
- name: Run Linter (check only)
run: npm run lint
Prettier:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18]
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install Dependencies
run: npm install
- name: Run Prettier (check only)
run: npm run prettier