Skip to content

Commit 27d8fc3

Browse files
committed
chore: migrate travis to github actions
Signed-off-by: Jefferson <[email protected]> chore: migrate travis to github actions
1 parent 1542f41 commit 27d8fc3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: N|Solid CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
Run_CI_with_N|Solid:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node-version: [18, 20, 22]
15+
nsolid-version: [5]
16+
fail-fast: false
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Setup N|Solid ${{ matrix.node-version }}
20+
uses: nodesource/setup-nsolid@v1
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
nsolid-version: ${{ matrix.nsolid-version }}
24+
- run: nsolid -vv
25+
- run: npm ci || npm install
26+
- run: npm run test
27+

0 commit comments

Comments
 (0)