Update contents #1131
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: HTML Preview check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
# Single deploy job since we're just deploying | |
deploy: | |
environment: | |
name: test-pages | |
url: ${{ steps.html_preview.outputs.url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: HTML Preview | |
id: html_preview | |
uses: pavi2410/html-preview-action@v4 | |
with: | |
html_file: 'index.html' |