tunneld: Reach remote and federated tunnelds over the /connect bridge #370
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 linting | |
| on: | |
| pull_request: | |
| branches: [ "master" ] | |
| paths: | |
| - '**/*.md' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| if: '! github.event.pull_request.draft' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '20' | |
| - name: Install Markdownlint CLI | |
| run: npm install -g markdownlint-cli | |
| - name: Run Markdownlint | |
| run: markdownlint -c markdownlint-config.json "**/*.md" |