Skip to content

Commit

Permalink
ci: Add new CI as alternative Runtimes
Browse files Browse the repository at this point in the history
Signed-off-by: Jefferson <[email protected]>

ci: Add new CI as alternative Runtimes
  • Loading branch information
riosje committed Feb 29, 2024
1 parent 43aa205 commit 6fcd518
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ci NSolid
name: ci Alternative Runtimes

on:
push:
Expand Down Expand Up @@ -29,17 +29,19 @@ jobs:
node-version: [18, 20]
os: [macos-latest, ubuntu-latest, windows-latest]
include:
- nsolid-version: 5
- runtime: nsolid
node-version: 18
- nsolid-version: 5
nsolid-version: 5
- runtime: nsolid
node-version: 20

nsolid-version: 5
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: nodesource/setup-nsolid@v1
if: ${{ matrix.runtime == 'nsolid' }}
with:
node-version: ${{ matrix.node-version }}
nsolid-version: ${{ matrix.nsolid-version }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: integration NSolid
name: integration Alternative Runtimes

on:
push:
Expand All @@ -24,19 +24,23 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
runtime: [nsolid]
node-version: [18, 20]
pnpm-version: [8]
include:
- nsolid-version: 5
node-version: 18
runtime: nsolid
- nsolid-version: 5
node-version: 20
runtime: nsolid
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: nodesource/setup-nsolid@v1
if: ${{ matrix.runtime == 'nsolid' }}
with:
node-version: ${{ matrix.node-version }}
nsolid-version: ${{ matrix.nsolid-version }}
Expand Down

0 comments on commit 6fcd518

Please sign in to comment.