Skip to content

Commit

Permalink
add barebones job
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss committed Dec 24, 2023
1 parent d5e466b commit b7718ee
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/site.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Site

on:
push:
branches:
- revive-api-extractor

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm install
- run: npm run exports-generate-docs
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
.nyc_output_feature/
.nyc_output_unit/
.nyc_output/
_site/
@rerun.txt
coverage/
lib/
node_modules
site/
tmp/

reports/*.html
reports/*.ndjson
reports/*.txt
Expand Down
2 changes: 1 addition & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"entryPoints": ["src/index.ts", "src/api/index.ts"],
"name": "cucumber-js",
"out": "./site",
"out": "./_site",
"tsconfig": "tsconfig.node.json"
}

0 comments on commit b7718ee

Please sign in to comment.