aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <s@saghul.net>2020-07-02 08:51:34 +0200
committerSaúl Ibarra Corretgé <s@saghul.net>2020-07-02 08:51:34 +0200
commitd925695928603c74912a2f6c392c906325925f44 (patch)
treeca0df3fe1923f5fc979418075db8dc8c3db6f318 /.github
parent0b88a783f3f7658d7e04e8a868ffbb4b56b77c7b (diff)
Add GH Action to run the linter
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.md27
-rw-r--r--.github/workflows/ci.yml16
2 files changed, 43 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md
new file mode 100644
index 0000000..80cfdc6
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.md
@@ -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
+---
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..7eadfd6
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -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