19 lines
434 B
YAML
19 lines
434 B
YAML
name: Test build
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone doki-theme-gitea
|
|
uses: actions/checkout@v6
|
|
with:
|
|
repository: infrastructure/doki-theme-gitea
|
|
submodules: true
|
|
- name: Install dependencies
|
|
run: npm i
|
|
- name: Generate the themes
|
|
run: npm run generate
|
|
- name: Check the output
|
|
run: ls -1 output/
|