Bump stylelint-config-standard from 36.0.1 to 37.0.0 #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check result.html | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
check-result-html: | |
name: check if result.html is up to date with index.html | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install nodejs | |
run: sudo apt-get update && sudo apt-get -y install nodejs npm && npm install inline-source | |
- name: modify build sccript | |
run: sed -i 's/results.html/test.html/g' html/build.js | |
- name: generate test.html | |
run: cd html && node build.js | |
- name: compare results.html with test.html | |
run: cd html && diff results.html test.html |