Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Systematic Test Restructuring #638

Merged
merged 10 commits into from
Feb 4, 2024
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Check for Broken Links
name: Check for Broken Links and Publish Wiki

'on':
push:
Expand All @@ -17,10 +17,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Setup the Environment"
uses: Code-Inspect/flowr/.github/actions/setup@main

- name: "Checkout Repository"
uses: actions/checkout@v4
with:
lfs: true

- name: Update the Capabilities Wiki Page
run: |
npm ci
npm run capabilities-markdown --silent > wiki/Capabilities-New.md

- name: Check the README for broken links
uses: Wandalen/wretry.action@v1.3.0
with:
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"benchmark": "ts-node src/cli/benchmark-app.ts",
"summarizer": "ts-node src/cli/summarizer-app.ts",
"export-quads": "ts-node src/cli/export-quads-app.ts",
"capabilities-markdown": "ts-node src/r-bridge/data/print.ts",
"build": "tsc --project .",
"lint-local": "eslint src/ test/ --rule \"no-warning-comments: off\"",
"lint": "npm run license-compat -- --summary && eslint src/ test/",
Expand Down
Loading
Loading