Skip to content

Commit

Permalink
chore: multi node workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
ScriptedAlchemy committed Nov 21, 2024
1 parent ae4195e commit ff6d98d
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/e2e-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
jobs:
e2e-manifest:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -16,10 +19,10 @@ jobs:
- name: Install Pnpm
run: corepack enable

- name: Setup Node.js 18
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Set Nx SHA
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/e2e-modern-ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
e2e-modern:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -15,10 +18,10 @@ jobs:
- name: Install Pnpm
run: corepack enable

- name: Setup Node.js 18
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Set Nx SHA
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-modern.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/e2e-next-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
e2e-next-dev:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -15,10 +18,10 @@ jobs:
- name: Install Pnpm
run: corepack enable

- name: Setup Node.js 18
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Set Nx SHA
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/e2e-next-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
e2e-next-prod:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -15,10 +18,10 @@ jobs:
- name: Install Pnpm
run: corepack enable

- name: Setup Node.js 18
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Set Nx SHA
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/e2e-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
jobs:
e2e-node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -16,10 +19,10 @@ jobs:
- name: Install Pnpm
run: corepack enable

- name: Setup Node.js 18
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Set Nx SHA
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/e2e-router.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
jobs:
e2e-runtime:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -16,10 +19,10 @@ jobs:
- name: Install Pnpm
run: corepack enable

- name: Setup Node.js 18
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Set Nx SHA
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [16, 18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down

0 comments on commit ff6d98d

Please sign in to comment.