Skip to content

Commit

Permalink
Merge branch 'development' into feature/cmcd-v2-keys
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaquinBCh committed Oct 21, 2024
2 parents f2d751b + 1fba00e commit d988338
Show file tree
Hide file tree
Showing 136 changed files with 7,005 additions and 3,663 deletions.
255 changes: 0 additions & 255 deletions .circleci/config.yml

This file was deleted.

4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
},
"globals": {
"dashjs": true,
"ManagedMediaSource": true,
"WebKitMediaSource": true,
"MediaSource": true,
"WebKitMediaKeys": true,
"MSMediaKeys": true,
"MediaKeys": true
"MediaKeys": true,
"google": true
},
"parserOptions": {
"ecmaVersion": 2020,
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ jobs:
with:
key: ${{ secrets.private_key }}
known_hosts: unnecessary

- name: Deploy with rsync
run: rsync -av -c -e "ssh -o StrictHostKeyChecking=no -oHostKeyAlgorithms=+ssh-dss" ${{inputs.envname}} ${{ secrets.user }}@${{ secrets.host }}:${{ inputs.deploy_path }}
- name: Deploy with scp
run: |
scp -r -o StrictHostKeyChecking=no -oHostKeyAlgorithms=+ssh-dss ${{inputs.envname}} ${{ secrets.user }}@${{ secrets.host }}:${{ inputs.deploy_path }}
40 changes: 40 additions & 0 deletions .github/workflows/verify_branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: verify_branch

on:
push:
branches:
- '**' # Triggers on push to any branch

jobs:
build_and_unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'npm'
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
name: List the state of node modules
continue-on-error: true
run: npm list
- run: npm install
- run: tsc
- run: npm run lint
- run: npm run test
- run: npm run webpack-build

Loading

0 comments on commit d988338

Please sign in to comment.