diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56e12c7..79639c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: env: CI: true - node-version: 16 + node-version: 18 jobs: lint: @@ -28,7 +28,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - node: [ 6, 8, 10, 12, 14, 16 ] + node: [ 6, 8, 10, 12, 14, 16, 18 ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -45,7 +45,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node }} + node-version: ${{ env.node-version }} - run: npm install - run: npx -y c8 --reporter=lcov npm test env: