Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 66ab9b5

Browse files
committedApr 26, 2021
Migrate to Github Actions
1 parent de83bd4 commit 66ab9b5

File tree

3 files changed

+28
-42
lines changed

3 files changed

+28
-42
lines changed
 

‎.github/workflows/main.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
env:
6+
CI: true
7+
8+
jobs:
9+
Test:
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest, macos-latest, windows-latest]
13+
channel: [stable, beta]
14+
runs-on: ${{ matrix.os }}
15+
steps:
16+
- uses: actions/checkout@v1
17+
- uses: UziTech/action-setup-atom@v2
18+
with:
19+
version: ${{ matrix.channel }}
20+
- name: Install windows-build-tools
21+
if: ${{ matrix.os == 'windows-latest' }}
22+
run: |
23+
npm config set msvs_version 2019
24+
- name: Install dependencies
25+
run: apm install
26+
- name: Run tests
27+
run: atom --test test

‎.travis.yml

-42
This file was deleted.

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Teletype for Atom
2+
![CI Status](https://github.com/atom/teletype/actions/workflows/main.yml/badge.svg)
23

34
An Atom package that lets developers share their workspace with team members and collaborate on code in real time.
45

0 commit comments

Comments
 (0)
This repository has been archived.