From fab43bf225db1760990606094538f07030cdf1e1 Mon Sep 17 00:00:00 2001 From: tobspr Date: Thu, 14 May 2020 09:25:24 +0200 Subject: [PATCH] Fix, 9 (I start to hate github actions ...) --- .github/workflows/ci-workflow.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 6ee10a5e..d62a704b 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -9,11 +9,13 @@ jobs: node-version: [10.x] steps: - uses: actions/checkout@v1 + with: + submodules: true - name: Lint uses: mooyoul/tslint-actions@v1.1.1 with: token: ${{ secrets.GITHUB_TOKEN }} - project: $GITHUB_WORKSPACE/src/js + project: ${{ github.workspace }}/src/js - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: