mirror of
https://github.com/videojs/m3u8-parser.git
synced 2026-06-06 08:22:33 +00:00
Compare commits
No commits in common. "fix-ci" and "main" have entirely different histories.
1 changed files with 14 additions and 0 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
|
@ -3,7 +3,21 @@ name: ci
|
|||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
should-skip:
|
||||
continue-on-error: true
|
||||
runs-on: ubuntu-latest
|
||||
# Map a step output to a job output
|
||||
outputs:
|
||||
should-skip-job: ${{steps.skip-check.outputs.should_skip}}
|
||||
steps:
|
||||
- id: skip-check
|
||||
uses: fkirc/skip-duplicate-actions@v2.1.0
|
||||
with:
|
||||
github_token: ${{github.token}}
|
||||
|
||||
ci:
|
||||
needs: should-skip
|
||||
if: ${{needs.should-skip.outputs.should-skip-job != 'true'}}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue