Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
khoakomlem committed Dec 3, 2021
2 parents 89ae7a2 + f2d22ed commit a8fac82
Show file tree
Hide file tree
Showing 4 changed files with 135 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''
---

## Describe the bug

A clear and concise description of what the bug is.

 

## Reproduce

Steps to reproduce the bug:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

 

## Expected behavior

A clear and concise description of what you expected to happen.

 

## Logs

Show your terminal log here to see what happened.

 

## Screenshots

If applicable, add screenshots to help explain your problem.

 

## System information

OS: [e.g. Windows 11 Version Dev (Build 22504.1010)]
Node.js version: [e.g. 16.11.1]
Browser: [e.g. Chrome 96.0.4664.45]
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: feature
assignees: ''
---

## Is your feature request related to a problem? Please describe

A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

 

## Describe the solution you'd like

A clear and concise description of what you want to happen.

 

## Describe alternatives you've considered

A clear and concise description of any alternative solutions or features you've considered.

 

## Additional context

Add any other context or screenshots about the feature request here.
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/plugin-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Plugin request
about: Describe the idea about your new plugin
title: ''
labels: plugin
assignees: ''
---

- Plugin name:
- How's it work:
- Why we should add it:
47 changes: 47 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

publish-gpr:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit a8fac82

Please sign in to comment.