Skip to content

Commit

Permalink
chore: update github template
Browse files Browse the repository at this point in the history
  • Loading branch information
lihbr committed Dec 6, 2021
1 parent afa7116 commit 2fb354c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: 🚨 Bug report
about: Report a bug report to help us improve the module.
about: Report a bug report to help improve the module.
title: ""
labels: "bug"
assignees: ""
Expand Down
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Nuxt Community Discord
- name: 🎙 Nuxt Community Discord
url: https://discord.nuxtjs.org
about: Consider asking questions about the module here.
- name: Prismic Community Forum
about: Nuxt Community Discord is a nice place to ask your questions and get live support by the community!
- name: 👪 Prismic Community Forum
url: https://community.prismic.io
about: Please use Prismic community forum for issues or questions directly related to Prismic.
about: Ask a question about the package or raise an issue directly related to Prismic. You will usually get support there more quickly!
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: 🙋‍♀️ Feature request
about: Suggest an idea or enhancement for the module.
about: Suggest an idea or enhancement for the package.
title: ""
labels: "enhancement"
assignees: ""
Expand Down
8 changes: 4 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->

- [ ] Chore (a non-breaking change which is related to package maintenance)
- [ ] Bug fix (a non-breaking change which fixes an issue)
- [ ] New feature (a non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
Expand All @@ -17,11 +18,10 @@
## Checklist:

<!--- Put an `x` in all the boxes that apply. -->
<!--- If your change requires a documentation PR, please link it appropriately -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->

- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly. (PR: #)
- [ ] My change requires an update to the official documentation.
- [ ] All [TSDoc](https://tsdoc.org) comments are up-to-date and new ones have been added where necessary.
- [ ] All new and existing tests are passing.

<!--- A cute animal picture is welcome to close your PR! -->
<!--- A cute animal (or car) picture is welcome to close your PR! -->
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
node: [16]

steps:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: checkout
- name: Checkout
uses: actions/checkout@master

- name: cache node_modules
- name: Cache node_modules
uses: actions/cache@v2
with:
path: node_modules
Expand All @@ -38,8 +38,8 @@ jobs:
- name: Lint
run: yarn lint

- name: Test
run: yarn test
- name: Unit
run: yarn unit

- name: Coverage
uses: codecov/codecov-action@v1

0 comments on commit 2fb354c

Please sign in to comment.