1
0
Fork 0
mirror of synced 2026-06-05 15:05:14 +00:00

chore: set failing configuration on integ workflow matrix

This commit is contained in:
peterwoodworth 2023-06-19 18:25:03 -07:00
commit b98e10c776
No known key found for this signature in database
GPG key ID: 01931412FD685922

View file

@ -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]