fix: updated strategy to not fail fast
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user