Skip to content

Commit

Permalink
updated workflows, add check for broken links in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
mlomb committed Mar 27, 2021
1 parent b7ae4c2 commit db8a124
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on: [push]
on: [push, pull_request]

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/demo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Web demo

on: [push]
on:
push:
branches:
- master

env:
EM_VERSION: 2.0.9
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Docs

on: [push, pull_request]

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Check markdown links
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'no'
use-verbose-mode: 'yes'

0 comments on commit db8a124

Please sign in to comment.