From 461377d6715947652b54c7459e79b3668a0ec925 Mon Sep 17 00:00:00 2001 From: "kshitij.sobti" Date: Fri, 9 Aug 2024 16:58:19 +0530 Subject: [PATCH] fixup! feat: Add support for convering source document to PDF via Gotenberg --- .github/workflows/ci-javascript.yml | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-javascript.yml b/.github/workflows/ci-javascript.yml index 6685dce..0746a20 100644 --- a/.github/workflows/ci-javascript.yml +++ b/.github/workflows/ci-javascript.yml @@ -7,11 +7,21 @@ on: branches: - '**' -steps: -- uses: actions/checkout@v4 -- name: Use Node.js - uses: actions/setup-node@v4 - with: - node-version: 20.x -- run: npm ci -- run: npm run lint + +jobs: + run_tests: + name: linting + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: 20.x + + - name: Install Dependencies + run: npm ci + + - name: Run linting + run: npm run lint