Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit a90cd3b

Browse files
authored
Switch from Travis CI to Github Actions (#200)
1 parent b96b0ce commit a90cd3b

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

.github/workflows/nodejs.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on: [push, pull_request]
2+
3+
name: CI
4+
5+
jobs:
6+
test:
7+
name: Test
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
os: [ubuntu-latest]
12+
node-version: [12.x, 14.x]
13+
runs-on: ${{matrix.os}}
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v2
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- name: Install Dependencies
21+
run: npm install
22+
- name: Test
23+
run: npm test

.travis.yml

-8
This file was deleted.

0 commit comments

Comments
 (0)