Skip to content

Lint fixes

Lint fixes #66

Workflow file for this run

name: Test
on: [push, pull_request]
permissions: { contents: read }
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm cit
lint:
runs-on: ubuntu-latest
if: github.ref_name != 'main'
permissions: { statuses: write }
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 } # super-linter needs full git history
- uses: github/super-linter/slim@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BASH_EXEC_IGNORE_LIBRARIES: true
FILTER_REGEX_EXCLUDE: '.*stub.*'