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 8b818aa commit ae4195e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
jobs:
checkout-install:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -18,10 +21,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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
jobs:
e2e-modern:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
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-runtime.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]
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

0 comments on commit ae4195e

Please sign in to comment.