Skip to content

Commit

Permalink
ci: use github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jun 14, 2021
1 parent fb1582b commit 6987522
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 58 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI
on:
pull_request:
push:
branches:
- master

jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: ${{ matrix.os }} - Atom ${{ matrix.atom_channel }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
atom_channel: [stable, beta]
steps:
- uses: actions/checkout@v2
- uses: atom-community/action-setup-atom@v1
with:
channel: ${{ matrix.atom_channel }}

- name: Install dependencies
run: |
apm install
- name: Run tests 👩🏾‍💻
run: npm run test
36 changes: 0 additions & 36 deletions .travis.yml

This file was deleted.

22 changes: 0 additions & 22 deletions appveyor.yml

This file was deleted.

0 comments on commit 6987522

Please sign in to comment.