Content: Add MADFLIGHT_FC3 board doc #1202
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: Test PR build and checks filenames + title case | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: ./package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: ENV file | |
| run: | | |
| echo "URL=http://localhost:3000" > .env | |
| echo "BASE_PATH=/" >> .env | |
| echo "ORG=betaflight" >> .env | |
| - name: Build package | |
| id: build-package | |
| continue-on-error: true | |
| run: npm run build | |
| check-file-names: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: ./package-lock.json | |
| - name: Install dependencies | |
| run: npm install chalk | |
| - name: Check file names of markdown files | |
| id: check-file-names | |
| run: npm run check:file-names | |
| check-title-case: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: ./package-lock.json | |
| - name: Install dependencies | |
| run: npm install chalk title-case | |
| - name: Check title case in markdown files | |
| id: check-title-case | |
| run: npm run check:title-case |