Skip to content

Bump codecov/codecov-action from 2.1.0 to 3.1.4 #6

Bump codecov/codecov-action from 2.1.0 to 3.1.4

Bump codecov/codecov-action from 2.1.0 to 3.1.4 #6

Workflow file for this run

name: Check docs build
# This workflow runs when a PR is labeled with `docs`
# This will check if the docs build successfully by running `npm run build`
on:
pull_request:
paths:
- './docs'
jobs:
check-docs-build:
if: ${{ github.event.label.name == 'docs' }}
name: Check docs build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.4.0
with:
persist-credentials: false
fetch-depth: 0
- name: Install dependencies and build docs 🧱
run: |
cd docs
npm install
npm run build