From b1929007a68619268b764331f8d056a52de8d6a3 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Wed, 19 May 2021 18:39:25 +0200 Subject: [PATCH] chore: run CI on latest Node.js --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebee578e20..7669debdc8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - node-version: [10.13.0, 15.x] + node-version: [10.13.0, '*'] exclude: - os: macOS-latest node-version: 10.13.0 @@ -26,8 +26,9 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} + check-latest: '*' - run: npm ci - name: Linting run: npm run format:ci - if: "${{ matrix.node-version == '15.x' }}" + if: "${{ matrix.node-version == '*' }}" - run: npm test