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

chore(ci): set up GitHub Actions workflow #217

Merged
merged 2 commits into from
Nov 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

on:
push:
branches:
- master
pull_request:

jobs:
linting:
name: Linting
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10.x

- run: yarn install --frozen-lockfile --non-interactive
- run: yarn lint:js

tests:
name: 'Tests: ${{ matrix.os }}'
runs-on: '${{ matrix.os }}-latest'

strategy:
matrix:
os: [ubuntu, macOS, windows]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10.x

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

This file was deleted.

41 changes: 0 additions & 41 deletions appveyor.yml

This file was deleted.

38 changes: 0 additions & 38 deletions azure-pipelines.yml

This file was deleted.