iptv-database/.github/workflows/check.yml
Aleksandr Statciuk a545f0f27a Update check.yml
2022-02-15 12:09:43 +03:00

21 lines
544 B
YAML

name: check
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, edited]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- id: files
uses: tj-actions/changed-files@v12.2
with:
files: \.csv$
- name: validate
if: steps.files.outputs.any_changed == 'true'
run: |
npm install
npm run db:validate -- ${{ steps.files.outputs.all_changed_files }}