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 Feb 25, 2022
1 parent 0d75582 commit e4f070d
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: [12.x, 14.x, 16.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 e4f070d

Please sign in to comment.