0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/.github/ISSUE_TEMPLATE/---bug_report.yml

70 lines
2.1 KiB
YAML
Raw Normal View History

2021-06-23 22:53:38 -05:00
name: "\U0001F41B Bug Report"
2021-06-23 22:41:33 -05:00
description: Report an issue or possible bug
2021-06-23 22:47:39 -05:00
title: "\U0001F41B "
2021-06-23 22:41:19 -05:00
labels: []
assignees: []
2021-06-23 22:36:07 -05:00
body:
- type: markdown
attributes:
value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.
2021-06-24 07:46:33 -05:00
- type: checkboxes
2021-06-24 07:47:40 -05:00
attributes:
2021-06-24 07:50:32 -05:00
label: Environment Checklist
2021-06-24 07:47:40 -05:00
options:
2021-06-24 07:50:32 -05:00
- label: I am using the **latest version of Astro** and all plugins.
2021-06-24 07:47:40 -05:00
required: true
- label: I am using a version of Node that supports ESM (`v12.20.0+`, `v14.13.1+`, or `v16.0.0+`)
required: true
2021-06-23 22:36:07 -05:00
- type: dropdown
attributes:
label: What package manager are you using?
options:
2021-06-24 10:30:06 -05:00
- "`npm v6`"
- "`npm v7`"
- "`yarn v1 (classic)`"
- "`yarn v2 (berry)`"
- "`pnpm`"
- "other (please mention in description)"
2021-06-24 10:29:22 -05:00
validations:
required: true
2021-06-23 22:36:07 -05:00
- type: input
attributes:
label: What operating system are you using?
2021-06-24 10:29:22 -05:00
description: 'For example: macOS, Windows, Linux'
validations:
required: true
2021-06-23 22:40:50 -05:00
- type: textarea
attributes:
label: Describe the Bug
description: A clear and concise description of what the bug is.
2021-06-24 10:29:22 -05:00
validations:
required: true
2021-06-23 22:40:50 -05:00
- type: textarea
attributes:
label: Expected Behavior
description: A clear and concise description of what you expected to happen.
2021-06-24 10:29:22 -05:00
validations:
required: true
- type: input
attributes:
label: Link to Minimal Reproducible Example
description: "We can't fix bugs that we can't see for ourselves! Issues with clear, minimal reproducible examples are more likely to be fixed quickly."
placeholder: 'https://github.com/username/repo'
2021-06-23 22:43:51 -05:00
- type: textarea
attributes:
label: Steps to reproduce
2021-06-24 10:29:22 -05:00
render: bash
value: |
# Setup
git clone git@github.com:username/repo.git
# OR npm init astro --template <name>
2021-06-23 22:44:36 -05:00
2021-06-24 10:29:22 -05:00
# Steps to reproduce
npm install
npm run build
# Paste error below (or describe the issue)
Error: ...
validations:
required: true