18 lines
399 B
YAML
18 lines
399 B
YAML
|
name: "Linting"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
javadoc:
|
||
|
name: "Javadoc"
|
||
|
runs-on: "ubuntu-latest"
|
||
|
container:
|
||
|
image: "git.euph.dev/actions/runner-js-latest:latest"
|
||
|
steps:
|
||
|
- name: "Checkout"
|
||
|
uses: "https://git.euph.dev/actions/checkout@v3"
|
||
|
- name: "Prettier"
|
||
|
run: npm_config_yes=true npx prettier src/ types/ --check --log-level=error
|