Skip to content

Commit a636092

Browse files
committed
ci: replace Travis with GitHub action
1 parent ab9434b commit a636092

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bpmn-js-differ
22

3-
[![Build Status](https://travis-ci.com/bpmn-io/bpmn-js-differ.svg?branch=master)](https://travis-ci.com/bpmn-io/bpmn-js-differ)
3+
[![CI](https://github.com/bpmn-io/bpmn-js-differ/actions/workflows/CI.yml/badge.svg)](https://github.com/bpmn-io/bpmn-js-differ/actions/workflows/CI.yml)
44

55
A semantic diffing utility for BPMN 2.0 files. To be used together with [bpmn-moddle](https://github.com/bpmn-io/bpmn-moddle).
66

0 commit comments

Comments
 (0)