From 20629ad93d3c0feaaecd31bd8991c2c83081b16a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mor=C3=A1vek?= Date: Thu, 5 Nov 2020 23:07:15 +0100 Subject: [PATCH] Restore JS tests --- .github/workflows/ci.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 415db76..8709100 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,6 +7,21 @@ on: - cron: '0 10 * * 5' jobs: + tests_js: + runs-on: ubuntu-latest + name: JS + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12.x + - name: Build + run: npm install + - name: Lint + run: npm run lint + - name: Build + run: npm run build + tests: runs-on: ubuntu-latest strategy: