Skip to content

Commit 2630b03

Browse files
committed
ci(ci/cd): use GitHub Actions instead of Travis
1 parent 696919f commit 2630b03

File tree

4 files changed

+89
-23
lines changed

4 files changed

+89
-23
lines changed

.github/workflows/branches.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Branches
5+
6+
on:
7+
push:
8+
branches-ignore:
9+
- master
10+
11+
jobs:
12+
build:
13+
name: Build
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
matrix:
18+
node-version:
19+
- 10.x
20+
- 12.x
21+
- 14.x
22+
- 15.x
23+
steps:
24+
- uses: actions/checkout@v2
25+
- name: Use Node.js ${{ matrix.node-version }}
26+
uses: actions/setup-node@v1
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
- run: npm i
30+
- run: npm run build
31+
- run: npm run test
32+
env:
33+
CI: true

.github/workflows/master.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Master
5+
6+
on:
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
name: Build
14+
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
node-version:
18+
- 10.x
19+
- 12.x
20+
- 14.x
21+
- 15.x
22+
steps:
23+
- uses: actions/checkout@v2
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v1
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
- run: npm i
29+
- run: npm run build
30+
- run: npm run test
31+
env:
32+
CI: true
33+
34+
release:
35+
name: Release
36+
runs-on: ubuntu-latest
37+
needs: build
38+
steps:
39+
- name: Checkout
40+
uses: actions/checkout@v1
41+
- name: Setup Node.js
42+
uses: actions/setup-node@v1
43+
with:
44+
node-version: 12
45+
- run: npm i
46+
- run: npm run build
47+
- run: npm run test
48+
env:
49+
CI: true
50+
- name: Release
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
54+
run: npx semantic-release

.travis.yml

-20
This file was deleted.

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
],
1515
"scripts": {
1616
"build:lib": "scripts/build.sh",
17-
"build:rollup": "node_modules/.bin/rimraf bundle.js && node_modules/.bin/rollup dist-bundle/index.bundle.js --file bundle.js --format iife",
17+
"build:rollup": "rimraf bundle.js && rollup dist-bundle/index.bundle.js --file bundle.js --format iife",
1818
"build": "yarn build:lib && yarn build:rollup",
19-
"test": "node_modules/.bin/jest --no-cache",
19+
"test": "jest --no-cache",
2020
"buildtest": "npm run build && npm run test",
2121
"cz": "git-cz"
2222
},
@@ -47,7 +47,6 @@
4747
"pre-commit": "1.x",
4848
"rimraf": "3.0.2",
4949
"rollup": "^2.26.10",
50-
"travis-deploy-once": "5.x",
5150
"ts-jest": "^26.3.0",
5251
"ts-node": "^9.0.0",
5352
"typescript": "4.0.2",

0 commit comments

Comments
 (0)