-
Notifications
You must be signed in to change notification settings - Fork 882
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
147 changed files
with
3,422 additions
and
40,054 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
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
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 |
---|---|---|
@@ -1,55 +1,139 @@ | ||
name: CI Testing | ||
name: Continuous integration | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
test: | ||
name: Run tests | ||
lint: | ||
name: Lint source files | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: yarn | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Lint source files | ||
run: yarn lint | ||
|
||
unit-tests: | ||
name: Unit tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: yarn | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Build | ||
run: yarn build | ||
|
||
- name: Run unit tests | ||
run: yarn test tests/unit | ||
|
||
- name: Upload coverage | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
parallel: true | ||
|
||
integration-tests: | ||
strategy: | ||
matrix: | ||
node: [18, 20, 21] | ||
node: | ||
- 18 | ||
- 20 | ||
name: Integration tests on Node ${{ matrix.node }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install flvtool2 | ||
run: sudo gem install flvtool2 | ||
- name: Install ffmpeg | ||
run: sudo apt install -y ffmpeg | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: yarn | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Build | ||
run: yarn build | ||
|
||
- name: Run tests | ||
run: yarn test | ||
- name: Generate coverage report | ||
run: yarn coverage | ||
- name: Store coveralls coverage | ||
run: yarn test tests/integration | ||
|
||
- name: Upload coverage | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
flag-name: linux-node-${{ matrix.node }} | ||
parallel: true | ||
- name: Upload to codecov | ||
uses: codecov/codecov-action@v3 | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
acceptance-tests: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
node: | ||
- 18 | ||
- 20 | ||
name: Acceptance with Node ${{ matrix.node }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: yarn | ||
|
||
- name: Install ffmpeg | ||
uses: ConorMacBride/install-package@v1 | ||
with: | ||
apt: ffmpeg | ||
brew: ffmpeg | ||
choco: ffmpeg | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Build | ||
run: yarn build | ||
|
||
- name: Run tests | ||
run: yarn test tests/acceptance | ||
|
||
- name: Upload coverage | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
files: coverage/lcov.info | ||
name: ubuntu-latest-node-${{ matrix.node }} | ||
parallel: true | ||
|
||
upload-coverage: | ||
name: Upload coverage | ||
needs: test | ||
finish-coverage: | ||
name: Finalize coverage | ||
needs: | ||
- unit-tests | ||
- integration-tests | ||
- acceptance-tests | ||
if: ${{ always() }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload to coveralls | ||
- name: Finalize coverage | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
parallel-finished: true | ||
carryforward: "linux-node-18,linux-node-20,linux-node-21" |
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
*.project | ||
node_modules | ||
|
||
# Test output | ||
.nyc_output | ||
*.swp | ||
.idea | ||
*.iml | ||
coverage | ||
|
||
# Build output | ||
build | ||
docs | ||
types |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
*.md | ||
.git* | ||
test/ | ||
examples/ | ||
src/ |
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,2 @@ | ||
build | ||
coverage |
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,3 @@ | ||
semi: false | ||
singleQuote: true | ||
trailingComma: none |
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,28 @@ | ||
# fluent-ffmpeg changelog | ||
|
||
## Unreleased | ||
|
||
### Breaking changes | ||
|
||
- Complete API rewrite | ||
- Drop support for Node.js < 18 | ||
- Drop support for flvtool/flvmeta | ||
- Drop support for avconv/avprobe | ||
|
||
### New features | ||
|
||
- No dependencies | ||
- Built-in typescript types | ||
|
||
### Development | ||
|
||
- Native typescript | ||
- Use yarn for dependency management | ||
- Use ava for the test suite | ||
- Use sinon for mocks | ||
- Use c8 for code coverage | ||
- Use prettier for linting | ||
- Use typedoc for documentation generation | ||
- Use Github Actions for CI | ||
- Use coveralls for coverage reports | ||
- Drop FOSSA, useless since we have no runtime dependencies |
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
Oops, something went wrong.