Skip to content

build(deps-dev): bump semver from 5.7.1 to 5.7.2 #18

build(deps-dev): bump semver from 5.7.1 to 5.7.2

build(deps-dev): bump semver from 5.7.1 to 5.7.2 #18

Workflow file for this run

---
name: Check for lint/build errors
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint Code Base, Spelling, Link Check
runs-on: ubuntu-latest
# the enviroment to deploy to / use secrets from
environment: no-secret
# modify the default permissions of the GITHUB_TOKEN, so as to only allow least priveleges
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- name: Lint
uses: ConsenSys/docs-gha/lint@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
linkCheck:
name: Link Checking
runs-on: ubuntu-latest
environment: no-secret
strategy:
matrix:
file-extensions: [".md", ".mdx"]
steps:
- uses: actions/checkout@v3
- name: LinkCheck
uses: ConsenSys/docs-gha/linkcheck@main
with:
FILE_EXTENSION: ${{ matrix.file-extensions }}