Deploy 065062ce8b62954d81218350cd6e3bf28905fb69 #78
This file contains hidden or 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: Proof HTML | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: npm ci | |
| - run: npm run build | |
| - uses: anishathalye/proof-html@v2 | |
| with: | |
| directory: ./docs | |
| check_css: false | |
| ignore_url_re: '(instagram\.com|facebook\.com|yelp\.com|yelp\.to|tripadvisor\.com|toasttab\.com|doordash\.com|kron4\.com)' | |
| validator_ignore: 'Element.*style.*not allowed as child of element.*div.*in this context.*' |