mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-23 13:30:25 +08:00
Merge branch 'main' into switch-auto-reload
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
---
|
||||
name: "Bug report"
|
||||
about: Create a bug report to improve optuna-dashboard
|
||||
title: "[Bug]"
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
# Bug reports
|
||||
|
||||
*Please file a bug report here.*
|
||||
|
||||
## Expected Behavior
|
||||
|
||||
*Please describe the behavior you are expecting*
|
||||
|
||||
## Current Behavior and Steps to Reproduce
|
||||
|
||||
*What is the current behavior? Please provide detailed steps or example for reproducing.*
|
||||
|
||||
## Context
|
||||
|
||||
Please provide any relevant information about your setup.
|
||||
This is important in case the issue is not reproducible except for under certain conditions.
|
||||
|
||||
* Optuna version
|
||||
* optuna-dashboard version or commit revision:
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
name: "Feature request"
|
||||
about: Suggest an idea for new features in optuna-dashboard.
|
||||
title: "[Feature]"
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
# Feature Request
|
||||
|
||||
*Please write your suggestion here.*
|
||||
@@ -0,0 +1,40 @@
|
||||
name: typescript-checks
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- '.github/workflows/typescript-checks.yml'
|
||||
- '**.ts'
|
||||
- '**.tsx'
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint checking on Ubuntu
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Set up Node v14
|
||||
uses: actions/setup-node@v2-beta
|
||||
with:
|
||||
node-version: '14'
|
||||
- run: |
|
||||
npm install
|
||||
npm run lint
|
||||
|
||||
build:
|
||||
name: JS build check
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Set up Node v14
|
||||
uses: actions/setup-node@v2-beta
|
||||
with:
|
||||
node-version: '14'
|
||||
- run: |
|
||||
npm install
|
||||
npm run build:dev
|
||||
npm run build:prd
|
||||
@@ -1,23 +0,0 @@
|
||||
name: typescript-lints
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- '.github/workflows/typescript-lints.yml'
|
||||
- '**.ts'
|
||||
- '**.tsx'
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint checking on Ubuntu
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Set up Node v14
|
||||
uses: actions/setup-node@v2-beta
|
||||
with:
|
||||
node-version: '14'
|
||||
- run: |
|
||||
npm install
|
||||
npm run lint
|
||||
Reference in New Issue
Block a user