From cd3841e7e08548ca29f1801a9683da08cec01df1 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Thu, 23 Jun 2022 11:52:57 -0500 Subject: [PATCH] Use node 16.x for testing --- .github/workflows/test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9c8ae1..5a2d131 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,16 +8,12 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [10.x, 12.x, 14.x, 15.x] - steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 16.x uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 16.x - run: npm ci - run: npm run build --if-present - run: npm test