chore: set failing configuration on integ workflow matrix
This commit is contained in:
parent
6d193465ae
commit
b98e10c776
1 changed files with 21 additions and 19 deletions
40
.github/workflows/development.yml
vendored
40
.github/workflows/development.yml
vendored
|
|
@ -6,27 +6,29 @@ on:
|
||||||
#workflow_call:
|
#workflow_call:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
# test:
|
||||||
strategy:
|
# strategy:
|
||||||
matrix:
|
# fail-fast: false
|
||||||
os: [windows-latest, ubuntu-latest, macos-latest]
|
# matrix:
|
||||||
node: [14, 16, 18]
|
# os: [windows-latest, ubuntu-latest, macos-latest]
|
||||||
name: Run unit tests
|
# node: [14, 16, 18]
|
||||||
runs-on: ${{ matrix.os }}
|
# name: Run unit tests
|
||||||
timeout-minutes: 5
|
# runs-on: ${{ matrix.os }}
|
||||||
steps:
|
# timeout-minutes: 5
|
||||||
- name: "Checkout repository"
|
# steps:
|
||||||
uses: actions/checkout@v3
|
# - name: "Checkout repository"
|
||||||
- name: "Setup node"
|
# uses: actions/checkout@v3
|
||||||
uses: actions/setup-node@v3
|
# - name: "Setup node"
|
||||||
with:
|
# uses: actions/setup-node@v3
|
||||||
node-version: ${{ matrix.node }}
|
# with:
|
||||||
- name: "Install dependencies"
|
# node-version: ${{ matrix.node }}
|
||||||
uses: bahmutov/npm-install@v1
|
# - name: "Install dependencies"
|
||||||
- name: "Run tests"
|
# uses: bahmutov/npm-install@v1
|
||||||
run: npm run test --if-present
|
# - name: "Run tests"
|
||||||
|
# run: npm run test --if-present
|
||||||
integ:
|
integ:
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [[self-hosted, linux-fargate], [self-hosted, windows-fargate], windows-latest, ubuntu-latest, macos-latest]
|
os: [[self-hosted, linux-fargate], [self-hosted, windows-fargate], windows-latest, ubuntu-latest, macos-latest]
|
||||||
node: [14, 16, 18]
|
node: [14, 16, 18]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue