diff options
| author | Shinigami <[email protected]> | 2023-07-15 07:23:28 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-15 07:23:28 +0200 |
| commit | 0708eb4efe9494ba64fe7029e6c0559aeb8d519c (patch) | |
| tree | fa678de84ca993ab19bc132debae26ae1f6a0d89 /.github/workflows | |
| parent | c6323f81339b2371305dd8be38a1946be5140683 (diff) | |
| download | faker-0708eb4efe9494ba64fe7029e6c0559aeb8d519c.tar.xz faker-0708eb4efe9494ba64fe7029e6c0559aeb8d519c.zip | |
infra: reduce tsconfig complexity (#2102)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 33 |
1 files changed, 3 insertions, 30 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbfb49db..41899cdf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,10 +167,10 @@ jobs: - name: Check formatting run: pnpm prettier --check . - ts-check-scripts: + ts-check: runs-on: ubuntu-latest timeout-minutes: 10 - name: 'TS-Check Scripts: node-18, ubuntu-latest' + name: 'TS-Check: node-18, ubuntu-latest' steps: - name: Checkout uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 @@ -192,34 +192,7 @@ jobs: CYPRESS_INSTALL_BINARY: 0 - name: Check scripts - run: pnpm run ts-check:scripts - - ts-check-tests: - runs-on: ubuntu-latest - timeout-minutes: 10 - name: 'TS-Check Tests: node-18, ubuntu-latest' - steps: - - name: Checkout - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 - with: - fetch-depth: 0 - - - name: Install pnpm - uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - - - name: Set node version to 18 - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 - with: - node-version: 18 - cache: 'pnpm' - - - name: Install deps - run: pnpm install - env: - CYPRESS_INSTALL_BINARY: 0 - - - name: Check tests - run: pnpm run ts-check:tests + run: pnpm run ts-check codecov: runs-on: ubuntu-latest |
