diff --git a/.github/actions/lint/action.yml b/.github/actions/lint/action.yml index b7eb7e3..e16704a 100644 --- a/.github/actions/lint/action.yml +++ b/.github/actions/lint/action.yml @@ -6,6 +6,6 @@ runs: - name: Install deps shell: bash run: | - npm run docker npm ci - npm run docker npm run build - npm run docker npm run lint \ No newline at end of file + npm ci + npm run build + npm run test:lint \ No newline at end of file diff --git a/.github/workflows/pull_request.workflow.yml b/.github/workflows/pull_request.workflow.yml index db6c1b7..29a054e 100644 --- a/.github/workflows/pull_request.workflow.yml +++ b/.github/workflows/pull_request.workflow.yml @@ -25,3 +25,16 @@ jobs: ${{ runner.os }}-build- ${{ runner.os }}- - uses: ./.github/actions/lint + + check-types: + name: Check types + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Install dependencies + run: npm ci + - name: Run types tests + run: npm run test:types