Skip to content

CMR-10238: Adding the virtual catalog 'ALL' #175

CMR-10238: Adding the virtual catalog 'ALL'

CMR-10238: Adding the virtual catalog 'ALL' #175

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