diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f0b60f..0e0f617 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [20.x] steps: - uses: actions/checkout@v2 @@ -28,16 +28,8 @@ jobs: - name: Install run: npm install - - name: Lint - run: npm run lint - - name: Test run: npm run test - name: Build run: npm run build - - - name: Coverage - run: npm run coverage - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}