2019-08-27 20:32:08 +02:00
|
|
|
name: Generate grouped playlists
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-08-27 20:39:38 +02:00
|
|
|
paths:
|
|
|
|
- 'channels/*'
|
2019-08-27 20:32:08 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
generate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-08-27 20:34:45 +02:00
|
|
|
|
|
|
|
- name: "npm install"
|
|
|
|
run: npm install
|
2019-08-27 20:32:08 +02:00
|
|
|
|
|
|
|
- name: "npm run generate"
|
|
|
|
run: npm run generate
|