mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
86c8907081
Bumps [Cyb3r-Jak3/html5validator-action](https://github.com/cyb3r-jak3/html5validator-action) from 7.2.0 to 8.0.0. - [Release notes](https://github.com/cyb3r-jak3/html5validator-action/releases) - [Changelog](https://github.com/Cyb3r-Jak3/html5validator-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/cyb3r-jak3/html5validator-action/compare/v7.2.0...v8.0.0) --- updated-dependencies: - dependency-name: Cyb3r-Jak3/html5validator-action dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
442 B
YAML
21 lines
442 B
YAML
name: Check HTML/JS is valid
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run HTML5 Validator
|
|
uses: Cyb3r-Jak3/html5validator-action@v8.0.0
|
|
with:
|
|
config: ./.github/html5validator.yml
|
|
css: true
|
|
- name: Install modules for eslint
|
|
run: npm i
|
|
- name: Run ESLint
|
|
run: npx eslint . --ext .js,.html
|