Minor docs fixes #917
Workflow file for this run
This file contains 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: Development workflow | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
paths-ignore: | |
- 'website/**' | |
- '**/*.md' | |
- '**/*.mdx' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
- name: 📥 Download deps | |
run: npm ci | |
- name: 🧪 Run lint | |
run: npm run lint | |
build: | |
runs-on: ${{ matrix.os }} | |
needs: lint | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- 14 | |
- 16 | |
- 18 | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: 📥 Download deps | |
run: npm ci | |
- name: 🏗 Build | |
run: npm run build | |
- name: Ensure no git changes | |
run: git diff --exit-code | |
- name: Run tests | |
if: matrix.node != '16' || matrix.os != 'ubuntu-latest' | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 20 | |
max_attempts: 3 | |
command: npm run test | |
- name: Run coverage | |
if: matrix.node == '16' && matrix.os == 'ubuntu-latest' | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 20 | |
max_attempts: 3 | |
command: npm run test:coverage | |
- name: ⬆️ Upload coverage to Codecov | |
if: matrix.node == '16' && matrix.os == 'ubuntu-latest' | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage/coverage-final.json | |
name: codecov-dev |