From 7135d558bc30682a8e07b29902ddccd2c475d1cd Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 20 Feb 2023 09:57:13 -0600 Subject: [PATCH] fix: update check out repository step --- .github/workflows/lint_test_format.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lint_test_format.yaml b/.github/workflows/lint_test_format.yaml index b4d720f..853390e 100644 --- a/.github/workflows/lint_test_format.yaml +++ b/.github/workflows/lint_test_format.yaml @@ -10,15 +10,12 @@ jobs: node-version: [14.x, 16.x, 18.x] steps: - name: Check out repository - - uses: actions/checkout@v3 - + uses: actions/checkout@v3 - name: Setup node ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - name: Install dependencies run: npm ci - - name: Run lint-fix run: npm run lint-fix