diff options
author | Michael C <[email protected]> | 2022-02-04 02:15:58 -0500 |
---|---|---|
committer | Michael C <[email protected]> | 2022-02-04 02:38:14 -0500 |
commit | ba2efe59cb3b76bfdc21ef13aac664cc85a61d4c (patch) | |
tree | c1faa884fb080a3e85970e27bb76867a3ec7ae30 /.github/workflows | |
parent | 88f61cf292e9401e03868d434131f74bdb1a9a32 (diff) | |
download | SponsorBlock-ba2efe59cb3b76bfdc21ef13aac664cc85a61d4c.tar.gz SponsorBlock-ba2efe59cb3b76bfdc21ef13aac664cc85a61d4c.zip |
fix updateInvidious ci
- add ts-node
- fix path
- add npm ci
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/updateInvidous.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/updateInvidous.yml b/.github/workflows/updateInvidous.yml index 50bb9769..c4f76f4a 100644 --- a/.github/workflows/updateInvidous.yml +++ b/.github/workflows/updateInvidous.yml @@ -12,7 +12,9 @@ jobs: uses: actions/checkout@v2 - name: Download instance list run: | - wget https://api.invidious.io/instances.json -O data.json + wget https://api.invidious.io/instances.json -O ci/data.json + - name: Install dependencies + run: npm ci - name: "Run CI" run: npm run ci:invidious |