Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8dcdb13

Browse files
committed
chore(ci): migrate to github actions
1 parent a2d7ed9 commit 8dcdb13

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request: # run on all PRs, not just PRs to a particular branch
6+
jobs:
7+
test:
8+
strategy:
9+
fail-fast: true
10+
matrix:
11+
nodeversion: [8.x, 10.x, 12.x, 14.x]
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: ${{ matrix.nodeversion }}
18+
- run: npm install
19+
- run: npm test

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)