markdown whitelist to include dev sites with port number #366
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 code | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'l10n_master' | |
| pull_request: | |
| paths-ignore: | |
| - 'translation/dest/**' | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| script: | |
| - lint | |
| - check-format | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: .node-version | |
| cache: pnpm | |
| - run: pnpm install | |
| - run: pnpm run ${{ matrix.script }} | |
| codeql: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: github/codeql-action/init@v3 | |
| with: | |
| languages: javascript | |
| - uses: github/codeql-action/analyze@v3 |