forked from spacebar/SplatNet
39 lines
No EOL
781 B
YAML
39 lines
No EOL
781 B
YAML
name: CodeQL
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint-debian:
|
|
runs-on: debian-latest
|
|
container:
|
|
image: node:20-bookworm
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install
|
|
run: npm install
|
|
- name: HTML
|
|
run: npx htmlhint "**/*.html"
|
|
- name: CSS
|
|
run: npx stylelint "**/*.css"
|
|
- name: JS
|
|
run: npx eslint .
|
|
|
|
lint-ubuntu:
|
|
needs: lint-debian
|
|
if: failure()
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: node:20-bookworm
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install
|
|
run: npm install
|
|
- name: HTML
|
|
run: npx htmlhint "**/*.html"
|
|
- name: CSS
|
|
run: npx stylelint "**/*.css"
|
|
- name: JS
|
|
run: npx eslint . |