initial commit #1
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: 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 |