Skip to content

Update action workflows #3

Update action workflows

Update action workflows #3

Workflow file for this run

name: Frontend CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Lint HTML
uses: action-htmlhint@main
with:
files: frontend/*.html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./frontend