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: