Skip to content

ci: add initial Github Action lint workflow #3

ci: add initial Github Action lint workflow

ci: add initial Github Action lint workflow #3

Workflow file for this run

name: lint
# This workflow is used to provide a successful CI check for the lint workflow (lint.yml)
# when no files are required to be checked. The `ignore-paths` option elements should match
# elements of the lint workflows `paths` option. This ensures that only one of the two workflows
# will run for a given PR.
on:
pull_request:
ignore-paths:
- '**.ts'
- '.eslintrc.json'
- '.eslintignore'
- '.prettierrc'
- 'yarn.lock'
permissions:
contents: read
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- run: 'echo "No eslint checks required"'