From 52d2a4e662d48951b9b0bab72073cea2b987e1c3 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 20 Feb 2023 10:50:49 -0600 Subject: [PATCH] fix: updated strategy to not fail fast --- .github/workflows/lint_test_format.yaml | 39 +++++++++++++------------ 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/.github/workflows/lint_test_format.yaml b/.github/workflows/lint_test_format.yaml index 279bf7b..50549cf 100644 --- a/.github/workflows/lint_test_format.yaml +++ b/.github/workflows/lint_test_format.yaml @@ -2,31 +2,32 @@ name: lint_test_format on: workflow_dispatch: 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 }} - # uses: actions/setup-node@v3 - # with: - # node-version: ${{ matrix.node-version }} - # - name: Install dependencies - # run: npm install - # - name: Run lint-fix - # run: npm run lint-fix - # - name: Commit changes - # uses: EndBug/add-and-commit@v9 + 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 }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: npm install + - name: Run lint-fix + run: npm run lint-fix + - name: Commit changes + uses: EndBug/add-and-commit@v9 test: name: test runs-on: ubuntu-latest strategy: matrix: node-version: [14.x, 16.x, 18.x] + fail-fast: false steps: - name: Check out repository uses: actions/checkout@v3