testsuite: add tests for mod, modSeaside #21
Workflow file for this run
This file contains hidden or 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
| name: Lint non-code files | |
| on: | |
| push: | |
| paths: | |
| - 'examples/**' | |
| - 'HelpSource/**' | |
| - 'sounds/**' | |
| - '*.md' | |
| pull_request: | |
| paths: | |
| - 'examples/**' | |
| - 'HelpSource/**' | |
| - 'sounds/**' | |
| - '*.md' | |
| jobs: | |
| lint-non-code-files: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: lint class library | |
| run: | | |
| sudo npm install -g lintspaces-cli | |
| lintspaces -e .editorconfig SCClassLibrary/**/*.sc || true # ignore failure | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - uses: pre-commit/[email protected] | |
| name: 'Run pre-commit' | |
| env: | |
| FULL_CHECK: 1 |