Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 1.0.16 to 1.0.17. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](https://github.com/gaurav-nelson/github-action-markdown-link-check/compare/1.0.16...1.0.17) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
83 lines
1.9 KiB
YAML
83 lines
1.9 KiB
YAML
name: PR Workflows
|
|
|
|
# Run action on pull request event
|
|
on: [pull_request]
|
|
|
|
|
|
jobs:
|
|
# Build exampleSite
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# checkout to the commit that has been pushed
|
|
- uses: actions/checkout@v4.2.2
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install node modules
|
|
run: npm install
|
|
|
|
- name: Setup Hugo
|
|
uses: peaceiris/actions-hugo@v3.0.0
|
|
with:
|
|
hugo-version: 'latest'
|
|
extended: true
|
|
|
|
- name: Build
|
|
run: |
|
|
cd exampleSite
|
|
hugo --minify
|
|
|
|
# Run linter
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install node modules
|
|
run: npm install
|
|
|
|
- name: Lint
|
|
run: |
|
|
npm run lint
|
|
|
|
lighthouse-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Waiting for Netlify Preview
|
|
uses: kamranayub/wait-for-netlify-action@v2.1.1
|
|
id: preview
|
|
with:
|
|
site_name: "toha-ci"
|
|
max_timeout: 300
|
|
env:
|
|
NETLIFY_TOKEN: ${{secrets.NETLIFY_TOKEN}}
|
|
|
|
- name: Run Lighthouse
|
|
uses: foo-software/lighthouse-check-action@v12.0.1
|
|
id: lighthouseCheck
|
|
with:
|
|
accessToken: ${{ secrets.LIGHTHOUSE_TOKEN }}
|
|
gitHubAccessToken: ${{secrets.GITHUB_TOKEN}}
|
|
emulatedFormFactor: 'all'
|
|
prCommentEnabled: true
|
|
prCommentSaveOld: false
|
|
timeout: 5
|
|
urls: "${{ steps.preview.outputs.url }},${{ steps.preview.outputs.url }}/posts/,${{ steps.preview.outputs.url }}/posts/markdown-sample/,${{ steps.preview.outputs.url }}/posts/shortcodes/"
|
|
|
|
# Check for any broken links
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# checkout to latest commit
|
|
- uses: actions/checkout@v4.2.2
|
|
# run markdown linter
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.17
|