Adding a check to do nothing if the point was already selected #296
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: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Use .npmrc | |
uses: bduff9/[email protected] | |
with: | |
dot-npmrc: ${{ secrets.DOT_NPMRC }} | |
- run: npm ci | |
- run: npm run lint |