Skip to content

Commit c2bbd11

Browse files
committed
ci: introduce github action implementing feature pull request
1 parent 4bff64e commit c2bbd11

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/integrate.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI with NodeJS
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
ci_to_master:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 18
15+
- run: npm ci
16+
- run: npm test
17+
- run: npm run build

0 commit comments

Comments
 (0)