Skip to content

Commit

Permalink
Use GitHub Actions instead of Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
astronomersiva committed Jun 27, 2022
1 parent 0d75582 commit 856e664
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 43 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on: "push"

concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
tests:
name: "Node ${{ matrix.node-version }} - ${{ matrix.os }} "
runs-on: "${{ matrix.os }}-latest"

strategy:
fail-fast: false
matrix:
node-version: [6.x, 8.x, 10.x]
os: [ubuntu, windows]

steps:
- run: git config --global core.autocrlf input
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.5.1
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"

- run: "yarn install --frozen-lockfile --non-interactive"
- run: "yarn test"
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

33 changes: 0 additions & 33 deletions appveyor.yml

This file was deleted.

0 comments on commit 856e664

Please sign in to comment.