From 673996169f6671787d0daecc7f733bde52f8bc56 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 8 Jun 2021 15:19:44 +0200 Subject: [PATCH] Update Node in Actions --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0b0b943..fe284ad 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,18 +4,18 @@ on: - push jobs: main: - name: '${{ matrix.node }}' + name: ${{matrix.node}} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: dcodeIO/setup-node-nvm@master with: - node-version: ${{ matrix.node }} + node-version: ${{matrix.node}} - run: npm install - run: npm test - uses: codecov/codecov-action@v1 strategy: matrix: node: - - lts/dubnium + - lts/erbium - node