Mobile card active and GitHub Actions (#71)
* Remove js for mobile card click style * Add headshot alt text and update example site * Add html validator github action * Debug GA * Fix GA bug
This commit is contained in:
28
.github/workflows/main.yml
vendored
Normal file
28
.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: Validate Generated Files
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
sudo snap install hugo
|
||||
pip install html5validator
|
||||
|
||||
- name: Build Example Site
|
||||
run: |
|
||||
cd exampleSite/
|
||||
hugo --minify
|
||||
|
||||
- name: Validate Generated Files
|
||||
run: html5validator --root exampleSite/public/ --also-check-css --ignore katex
|
||||
Reference in New Issue
Block a user