From d8a626d701b3ac6b7ba23e3df830f5cee9179d26 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Mon, 10 Oct 2022 13:23:15 -0400 Subject: [PATCH] Node16 in CI --- .github/workflows/ci.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ea1cf2..3331753 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,18 +8,17 @@ on: jobs: build: - runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: Use Node.js 12.x - uses: actions/setup-node@v1 - with: - node-version: 12.x - - run: npm ci - - run: npm test - - name: codecov - run: npx codecov - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + - uses: actions/checkout@v1 + - name: Use Node.js 16.x + uses: actions/setup-node@v1 + with: + node-version: 16.x + - run: npm ci + - run: npm test + - name: codecov + run: npx codecov + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}