diff --git a/.github/workflows/check-types-and-lint.yml b/.github/workflows/check-types-and-lint.yml index b7316471..fc0a9380 100644 --- a/.github/workflows/check-types-and-lint.yml +++ b/.github/workflows/check-types-and-lint.yml @@ -7,13 +7,13 @@ name: Check Types and Lint - research jobs: - build_and_test: + test: runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@v3 - - name: Create Production Build - run: yarn install --frozen-lockfile && yarn run build + - name: Install Dependencies + run: yarn install --frozen-lockfile - name: Check Types run: yarn type-check - name: Lint