Skip to content

Bump ytdl-core from 4.11.2 to 4.11.5 #644

Bump ytdl-core from 4.11.2 to 4.11.5

Bump ytdl-core from 4.11.2 to 4.11.5 #644

Workflow file for this run

name: MainBuild
on: push
jobs:
build-project:
name: Build project
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: Cache Node.js dependencies
id: node-cache
uses: actions/cache@v2
with:
path: |
node_modules
key: my-cache-${{ runner.os }}-${{ hashFiles('./package-lock.json') }}
- name: Install Node.js dependencies
if: steps.node-cache.outputs.cache-hit != 'true'
run: npm install
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test