Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Diff Check #6

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/root.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
registry-url: https://registry.npmjs.org/

- name: Install
run: npm install

- name: Lint
run: npm run lint

- name: Build
run: npm run build
4 changes: 2 additions & 2 deletions cloudformation/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ const PORTS = [{
},{
Name: 'SRT',
Port: 8890,
Protocol: 'udp',
Protocol: 'tcp',
Description: 'SRT Protocol',
Certificate: false,
Enabled: false
Enabled: true
}].filter((p) => {
return p.Enabled;
});
Expand Down
Loading
Loading