oopsy: add translation for oopsy NetRegexes #424
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: Markdown Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '*.json' | |
| - '**/*.md' | |
| - '.github/workflows/markdown-lint.yml' | |
| - '.github/actions/setup-js-env/' | |
| pull_request: | |
| paths: | |
| - '*.json' | |
| - '**/*.md' | |
| - '.github/workflows/markdown-lint.yml' | |
| - '.github/actions/setup-js-env/' | |
| jobs: | |
| markdownlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-js-env | |
| - name: Add Custom Problem Matcher | |
| run: | | |
| echo "::add-matcher::.github/matchers/${{ github.job }}.json" | |
| - name: npm run markdownlint | |
| run: | | |
| npm run markdownlint |