mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
Create _check.yml
This commit is contained in:
parent
eb01ddc327
commit
9fd50784fa
1 changed files with 23 additions and 0 deletions
23
.github/workflows/_check.yml
vendored
Normal file
23
.github/workflows/_check.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: _check
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, synchronize, reopened, edited]
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- id: files
|
||||||
|
uses: jitterbit/get-changed-files@v1
|
||||||
|
- run: |
|
||||||
|
for changed_file in ${{ steps.files.outputs.added_modified }}; do
|
||||||
|
echo "Do something with this ${changed_file}."
|
||||||
|
done
|
||||||
|
# - name: Download channels from API
|
||||||
|
# run: |
|
||||||
|
# mkdir -p scripts/data
|
||||||
|
# curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json
|
||||||
|
# - run: npm install
|
||||||
|
# - run: npm run lint ${{ steps.files.outputs.added_modified }}
|
||||||
|
# - run: npm run validate ${{ steps.files.outputs.added_modified }}
|
Loading…
Add table
Add a link
Reference in a new issue