diff --git a/.github/workflows/check_dead_links.yml b/.github/workflows/check_dead_links.yml new file mode 100644 index 0000000..1d1caea --- /dev/null +++ b/.github/workflows/check_dead_links.yml @@ -0,0 +1,19 @@ +name: Check Markdown links + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + workflow_dispatch: + +jobs: + test-and-build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + persist-credentials: false + fetch-depth: 0 + + - uses: gaurav-nelson/github-action-markdown-link-check@v1 \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/restructure_files.yml similarity index 93% rename from .github/workflows/main.yml rename to .github/workflows/restructure_files.yml index 09531e7..ac668a1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/restructure_files.yml @@ -1,4 +1,4 @@ -name: Format files +name: Restructure files on: push: @@ -19,7 +19,7 @@ jobs: - name: Install Prettier run: npm install --save-dev --save-exact prettier - - name: Format files + - name: Restructure files run: node_modules/.bin/prettier --write README.md animation-simulation/ - name: Commit files