Skip to content

Commit

Permalink
move from travis and appveyor to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Sep 18, 2023
1 parent 8ec98ed commit 9c3ca6d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 54 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]


jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [4.x, 6.x, 8.x]
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- run: npm install
- run: npm test
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

37 changes: 0 additions & 37 deletions appveyor.yml

This file was deleted.

0 comments on commit 9c3ca6d

Please sign in to comment.