Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/ISSUE_TEMPLATE/new-domain-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ body:
id: config_link
attributes:
label: Domain Config URL
description: Link to the domain's `config.json` file (must be publicly accessible)
placeholder: https://github.com/your-org/repo/blob/main/domains/your-domain/config.json
description: Link to the domain's **raw** `config.json` file (must be publicly accessible)
placeholder: https://raw.githubusercontent.com/Workflomics/tools-and-domains/refs/heads/main/domains/proteomics/config.json
validations:
required: true

Expand All @@ -38,7 +38,9 @@ body:
label: Domain Validation
description: Confirm the following before submitting
options:
- label: I have validated the domain locally using the Workflomics CLI or web interface
- label: I have validated the domain locally using the API CLI (`java -jar APE.jar synthesis ape`)
required: true
- label: I added the script to update the SQL database in the `database/03_import_data.sql` script
required: true
- label: All referenced tools and types are accessible and properly configured
required: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down