-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Bug Report | ||
about: Before posting, please make sure you check https://community.jitsi.org | ||
|
||
--- | ||
|
||
*This Issue tracker is only for reporting bugs and tracking code related issues.* | ||
|
||
Before posting, please make sure you check community.jitsi.org to see if the same or similar bugs have already been discussed. General questions, installation help, and feature requests can also be posted to community.jitsi.org. | ||
|
||
## Description | ||
--- | ||
|
||
## Current behavior | ||
--- | ||
|
||
## Expected Behavior | ||
--- | ||
|
||
## Possible Solution | ||
--- | ||
|
||
## Steps to reproduce | ||
--- | ||
|
||
# Environment details | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Simple CI | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
run-ci: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.x' | ||
- run: sudo apt-get install libx11-dev zlib1g-dev libpng-dev libxtst-dev | ||
- run: npm install | ||
- run: npm run lint |