Skip to content

Commit 1fdecad

Browse files
authored
travis -> github actions (#278)
1 parent cf6f38c commit 1fdecad

File tree

3 files changed

+25
-15
lines changed

3 files changed

+25
-15
lines changed

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
node-version: [8]
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Setup Python 3.8
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: '3.8'
19+
- name: Use Node.js ${{ matrix.node-version }}
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
- run: npm install
24+
- run: npm test

.travis.yml

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

test/mocha.opts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
--require should
22
--reporter spec
33
--ui bdd
4-
--growl
5-
test
4+
test

0 commit comments

Comments
 (0)