diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d85fbf81b..bebba6303 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ on: jobs: - test_lint: + test_format: runs-on: ubuntu-latest if: ${{ !github.event.created && github.repository != 'garronej/ts-ci' }} steps: @@ -20,10 +20,10 @@ jobs: run: yarn format:check test: runs-on: ${{ matrix.os }} - needs: test_lint + needs: test_format strategy: matrix: - node: [ '14', '17' ] + node: [ '16', '17' ] os: [ windows-latest, ubuntu-latest ] name: Test with Node v${{ matrix.node }} on ${{ matrix.os }} steps: