fix: updated strategy to not fail fast

This commit is contained in:
Stevan Freeborn
2023-02-20 10:50:49 -06:00
parent 7dc123feaa
commit 52d2a4e662
+20 -19
View File
@@ -2,31 +2,32 @@ name: lint_test_format
on: on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
# lint: lint:
# name: lint name: lint
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# strategy: strategy:
# matrix: matrix:
# node-version: [14.x, 16.x, 18.x] node-version: [14.x, 16.x, 18.x]
# steps: steps:
# - name: Check out repository - name: Check out repository
# uses: actions/checkout@v3 uses: actions/checkout@v3
# - name: Setup node ${{ matrix.node-version }} - name: Setup node ${{ matrix.node-version }}
# uses: actions/setup-node@v3 uses: actions/setup-node@v3
# with: with:
# node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
# - name: Install dependencies - name: Install dependencies
# run: npm install run: npm install
# - name: Run lint-fix - name: Run lint-fix
# run: npm run lint-fix run: npm run lint-fix
# - name: Commit changes - name: Commit changes
# uses: EndBug/add-and-commit@v9 uses: EndBug/add-and-commit@v9
test: test:
name: test name: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [14.x, 16.x, 18.x] node-version: [14.x, 16.x, 18.x]
fail-fast: false
steps: steps:
- name: Check out repository - name: Check out repository
uses: actions/checkout@v3 uses: actions/checkout@v3