Skip to content

Commit

Permalink
Merge pull request #711 from modos189/comm_tabs_refactor_fix_legacy
Browse files Browse the repository at this point in the history
Proxy for chat and COMM API
  • Loading branch information
modos189 committed May 15, 2024
2 parents 7ef46bb + 7fe9466 commit 199c9f7
Show file tree
Hide file tree
Showing 8 changed files with 774 additions and 115 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"env": {
"browser": true,
"es6": true,
"es2024": true,
"jquery": true,
"greasemonkey": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Tests
'on':
push:
pull_request:
types:
- opened
- synchronize
- reopened

jobs:
test:
name: 'Node.js v18'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '18'
- name: 'Cache node_modules'
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-18-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-18-
- name: Install Dependencies
run: npm install
- name: Run All Node.js Tests
run: npm run test
Loading

0 comments on commit 199c9f7

Please sign in to comment.