Skip to content

updated meta information moved favicon #5

updated meta information moved favicon

updated meta information moved favicon #5

Workflow file for this run

name: Lint html files
on:
push:
branches-ignore:
- 'dependabot/**'
paths:
- 'package.json'
- '.htmlhintrc'
- 'src/**/*.html'
pull_request:
paths:
- 'package.json'
- '.htmlhintrc'
- 'src/**/*.html'
env:
NODE_VERSION: 20
jobs:
lint-html:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install latest nodejs
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install faster package manager
run: npm i -g pnpm
- name: Install dependencies from package.json
run: pnpm install
- name: Run html lint specified in package.json
run: pnpm run lint:html