Skip to content

Commit 7d0c30d

Browse files
committed
ci: use GitHub action
1 parent 24c0c33 commit 7d0c30d

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

.github/workflows/CI.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
on: [ push, pull_request ]
3+
jobs:
4+
Build:
5+
runs-on: ${{ matrix.os }}
6+
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest]
10+
node-version: [ 20 ]
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Use Node.js ${{matrix.node-version}}
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: ${{matrix.node-version}}
19+
cache: 'npm'
20+
- name: Install dependencies
21+
run: npm ci
22+
- name: Build
23+
run: npm run all

.travis.yml

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# diffpatch
55

6-
[![Build Status](https://secure.travis-ci.com/bpmn-io/diffpatch.svg)](http://travis-ci.com/bpmn-io/diffpatch)
6+
[![CI](https://github.com/bpmn-io/diffpatch/actions/workflows/CI.yml/badge.svg)](https://github.com/bpmn-io/diffpatch/actions/workflows/CI.yml)
77

88
Diff and patch JavaScript objects.
99

@@ -257,4 +257,4 @@ This library is a fork of [jsondiffpatch](https://github.com/benjamine/jsondiffp
257257

258258
## License
259259

260-
MIT
260+
MIT

0 commit comments

Comments
 (0)