Skip to content

Commit 0efcf35

Browse files
authored
Migrate from Travis to Github Actions (TrySound#79)
1 parent ac15e95 commit 0efcf35

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

.github/workflows/nodejs.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- '**'
10+
11+
jobs:
12+
test:
13+
name: Test on Node.js ${{ matrix.node }}
14+
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
node: [10, 12, 14]
21+
22+
steps:
23+
- uses: actions/checkout@v2
24+
25+
- uses: actions/setup-node@v1
26+
with:
27+
node-version: ${{ matrix.node }}
28+
29+
- run: yarn install
30+
31+
- name: Test
32+
run: yarn test

.travis.yml

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

0 commit comments

Comments
 (0)