Skip to content

Commit

Permalink
Merge pull request #590 from derbyjs/move-to-github-actions
Browse files Browse the repository at this point in the history
Move travis CI to github actions
  • Loading branch information
pypmannetjies authored Jan 8, 2021
2 parents 3120415 + c4886c1 commit 09d2a70
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 8
- 10
- 12
- 14
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install
- name: Test
run: npm run test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![build status](https://api.travis-ci.org/derbyjs/derby.png)](http://travis-ci.org/derbyjs/derby)
![Test](https://github.com/derbyjs/derby/workflows/Test/badge.svg)

# Derby

Expand All @@ -19,6 +19,7 @@ Create an [issue](https://github.com/derbyjs/derby/issues) or reach out to the d
Further resources: **https://derbyjs.com/resources**

## MIT License

Copyright (c) 2011-2020 by Nate Smith

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down

0 comments on commit 09d2a70

Please sign in to comment.