Skip to content

Commit

Permalink
chore: switching from travis to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
martinheidegger committed Mar 22, 2022
1 parent a742b1e commit 1c7dbd6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tests

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- run: npm -v
- run: npm i
- run: npm run test
- run: npm run bench
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
npm install protocol-buffers
```

[![build status](https://travis-ci.org/mafintosh/protocol-buffers.svg?branch=master)](https://travis-ci.org/mafintosh/protocol-buffers)
[![build status](https://github.com/mafintosh/protocol-buffers/actions/workflows/test.yml/badge.svg)](https://github.com/mafintosh/protocol-buffers/actions/workflows/test.yml)
![dat](http://img.shields.io/badge/Development%20sponsored%20by-dat-green.svg?style=flat)

## Usage
Expand Down

0 comments on commit 1c7dbd6

Please sign in to comment.