From e71f76741b1cc20e239bd2b1a037c21548dfaf8d Mon Sep 17 00:00:00 2001 From: Lei Chen Date: Sun, 6 Aug 2023 13:52:15 +0800 Subject: [PATCH] print deps version and remove node v14 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 036f56337..219811418 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,8 @@ jobs: - name: Print put node & npm version # Output useful info for debugging. run: node --version && npm --version + - name: Print ts and ts-node version + run: cd packages/less && npm list typescript && npm list ts-node - name: Run unit test run: cd packages/less && npm test @@ -38,7 +40,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [14, 16, 19] + node: [16, 19] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2