diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 73e0522..b098135 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -6,6 +6,7 @@ on: push: branches: - main + - feature/ci-test jobs: unit-test: @@ -20,9 +21,21 @@ jobs: with: node-version: 16 + - name: Check node version + run: node -v + - name: Install dependencies run: npm ci + - name: Check typescript version + run: npm list typescript + + - name: Check jest version + run: npm list jest + + - name: Check @amap/amap-jsapi-types version + run: npm list @amap/amap-jsapi-types + - name: Run tests run: npm run test:all -- --coverage