make only maxele and obs layers visible by default #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2024, The University of North Carolina at Chapel Hill All rights reserved. | |
# SPDX-FileCopyrightText: 2022 Renaissance Computing Institute. All rights reserved. | |
# | |
# SPDX-License-Identifier: BSD 3-Clause | |
name: ES Lint the repo | |
# trigger event is on a push or a pull request | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm run lint |