From 3e4f7047d3bd0bdc9b7bd614282257997741927f Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 20 Feb 2023 11:09:29 -0600 Subject: [PATCH] fix: update lint job to only run on one version of node --- .github/workflows/lint_test_format.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint_test_format.yaml b/.github/workflows/lint_test_format.yaml index 50549cf..099599b 100644 --- a/.github/workflows/lint_test_format.yaml +++ b/.github/workflows/lint_test_format.yaml @@ -5,23 +5,23 @@ jobs: lint: name: lint runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.x, 16.x, 18.x] steps: - name: Check out repository uses: actions/checkout@v3 - - name: Setup node ${{ matrix.node-version }} + - name: Setup node uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 18.x - name: Install dependencies run: npm install - name: Run lint-fix run: npm run lint-fix - name: Commit changes uses: EndBug/add-and-commit@v9 + with: + commit: --no-verify test: + needs: lint name: test runs-on: ubuntu-latest strategy: