From: Evan You Date: Tue, 10 May 2022 02:47:32 +0000 (+0800) Subject: ci: run lint during ci X-Git-Tag: v3.2.34-beta.1~78 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1414f17490165d8d170afa651ee9866294d971f6;p=thirdparty%2Fvuejs%2Fcore.git ci: run lint during ci --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e02bfc662..f4b51a822d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - name: Run unit tests run: pnpm run test - test-dts: + lint-and-test-dts: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -46,6 +46,9 @@ jobs: - run: pnpm install + - name: Run eslint + run: pnpm run lint + - name: Run type declaration tests run: pnpm run test-dts