From ebbfe8eb8f19323e069ce5512731dc6cb5d39973 Mon Sep 17 00:00:00 2001 From: Steve King Date: Sat, 23 Sep 2023 15:12:26 +0300 Subject: [PATCH] Fix test, update matrix to include node@20 --- .github/workflows/ci.yml | 2 +- simple-git/test/unit/log.spec.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57c61b49..9ab5c9e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14, 16, 18, 19] + node-version: [14, 16, 18, 20] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} diff --git a/simple-git/test/unit/log.spec.ts b/simple-git/test/unit/log.spec.ts index 4d8d59b8..5e9fcd4b 100644 --- a/simple-git/test/unit/log.spec.ts +++ b/simple-git/test/unit/log.spec.ts @@ -55,8 +55,8 @@ describe('log', () => { '--follow', '--fixed-strings', '--', - 'file2', - 'index.js' + 'index.js', + 'file2' ); });