diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 8ec55995ec1..4352a19cc01 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -22,23 +22,11 @@ jobs: cache: 'yarn' - run: yarn install --frozen-lockfile --immutable - - name: Eslint + - name: TypeScript Build + run: yarn build + + - name: ESLint run: yarn lint - name: Prettier Check run: yarn pretty-check - - build: - name: Typescript Build - runs-on: ubuntu-20.04 - steps: - - name: Checkout Code - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: 'yarn' - - run: yarn install --frozen-lockfile --immutable - - - name: Tyescript Build - run: yarn build