18 lines
349 B
YAML
18 lines
349 B
YAML
|
name: "Javadoc Deploy"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
javadoc:
|
||
|
name: "Javadoc"
|
||
|
runs-on: "ubuntu-latest"
|
||
|
container:
|
||
|
image: "git.euph.dev/actions/runner-basic:latest"
|
||
|
steps:
|
||
|
- name: "Checkout"
|
||
|
uses: "https://git.euph.dev/actions/checkout@v3"
|
||
|
- name: "Prettier"
|
||
|
run: node -v && npm -v
|