From 39e8ceb47a2c3d99538bba517baf5c9e9c36d19e Mon Sep 17 00:00:00 2001 From: Brian Skinn Date: Fri, 29 Mar 2024 10:54:48 -0400 Subject: [PATCH] Fix YML formatting, I guess --- .github/check_types.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/check_types.yml b/.github/check_types.yml index 1980feb..1fbf021 100644 --- a/.github/check_types.yml +++ b/.github/check_types.yml @@ -11,17 +11,17 @@ jobs: runs-on: ubuntu-latest steps: - - name: Check out repo - uses: actions/checkout@v4 + - name: Check out repo + uses: actions/checkout@v4 - - name: Set up Node w/caching - uses: actions/setup-node@v4 - with: - cache: 'npm' - cache-dependency-path: 'package-lock.json' + - name: Set up Node w/caching + uses: actions/setup-node@v4 + with: + cache: 'npm' + cache-dependency-path: 'package-lock.json' - - name: Install deps - run: npm install + - name: Install deps + run: npm install - - name: Run formatting check - run: npm run type-check + - name: Run formatting check + run: npm run type-check