Skip to content

Remove the invalid </br> and </hr> elements after the diff again. #11

Remove the invalid </br> and </hr> elements after the diff again.

Remove the invalid </br> and </hr> elements after the diff again. #11

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
run-linters:
name: Run CI
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install Node.js dependencies
run: npm ci
- name: Run linter
run: npm run lint:ci
- name: Build Assets
run: npm run build
- name : Run test
run: npm run test:ci