From cf87ea49bb39b2371af746ead3c1b0a5dc88a93c Mon Sep 17 00:00:00 2001 From: freearhey Date: Tue, 27 Apr 2021 20:46:30 +0300 Subject: [PATCH] Create check.yml --- .github/workflows/check.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/check.yml diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000000..0c024fbc71 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,16 @@ +name: check +on: + workflow_dispatch: + push: + pull_request: + types: [opened, synchronize, reopened, edited] +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Install Dependencies + run: npm install + - name: Check Playlists + run: npm run lint