issue templates
This commit is contained in:
parent
e3870579b2
commit
c0a9b58ea7
14
.github/ISSUE_TEMPLATE/developer-bug.md
vendored
Normal file
14
.github/ISSUE_TEMPLATE/developer-bug.md
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
name: Developer friction when contributing to Squiggle
|
||||||
|
about: Did your yarn scripts fail? Did the CI diverge from a README? Etc.
|
||||||
|
labels: 'ops'
|
||||||
|
---
|
||||||
|
# Description:
|
||||||
|
|
||||||
|
|
||||||
|
# The OS and version, yarn version, etc. in which this came up
|
||||||
|
|
||||||
|
|
||||||
|
# Desired behavior
|
||||||
|
|
||||||
|
|
7
.github/ISSUE_TEMPLATE/future.md
vendored
Normal file
7
.github/ISSUE_TEMPLATE/future.md
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
name: Idea or feature request
|
||||||
|
about: Where would you like to see Squiggle go over the next few months, several months, or few years?
|
||||||
|
---
|
||||||
|
# Description
|
||||||
|
|
||||||
|
|
18
.github/ISSUE_TEMPLATE/user-bug.md
vendored
Normal file
18
.github/ISSUE_TEMPLATE/user-bug.md
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
name: Bug reports for Squiggle users
|
||||||
|
about: Rendering oddly, trouble with the playground, something like this?
|
||||||
|
labels: 'bug'
|
||||||
|
---
|
||||||
|
# Description:
|
||||||
|
|
||||||
|
|
||||||
|
# Steps to reproduce:
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
|
||||||
|
# Expected behavior:
|
||||||
|
|
||||||
|
|
||||||
|
# What I got instead:
|
||||||
|
|
3
.github/workflows/ci.yaml
vendored
3
.github/workflows/ci.yaml
vendored
|
@ -5,6 +5,7 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
pre_check:
|
pre_check:
|
||||||
|
name: Precheck for skipping redundant jobs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
should_skip_lang: ${{ steps.skip_lang_check.outputs.should_skip }}
|
should_skip_lang: ${{ steps.skip_lang_check.outputs.should_skip }}
|
||||||
|
@ -34,7 +35,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: yarn
|
run: yarn
|
||||||
- name: Build rescript
|
- name: Build rescript codebase
|
||||||
run: yarn build
|
run: yarn build
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: yarn test
|
run: yarn test
|
||||||
|
|
Loading…
Reference in New Issue
Block a user