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

Commit f889acb

Browse files
committed
Migrate to Github Actions
1 parent 57531cc commit f889acb

File tree

5 files changed

+29
-46
lines changed

5 files changed

+29
-46
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: npm i
26+
- name: Run tests
27+
run: atom --test spec

.travis.yml

-15
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CSS language support in Atom
2-
[![macOS Build Status](https://travis-ci.org/atom/language-css.svg?branch=master)](https://travis-ci.org/atom/language-css) [![Windows Build Status](https://ci.appveyor.com/api/projects/status/v8rvm88dxp73ko2y/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/language-css/branch/master) [![Dependency Status](https://david-dm.org/atom/language-css.svg)](https://david-dm.org/atom/language-css)
2+
![CI Status](https://github.com/atom/language-css/actions/workflows/main.yml/badge.svg)
33

44
Adds syntax highlighting, completions, and snippets to CSS files in Atom.
55

appveyor.yml

-29
This file was deleted.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
"coffeelint": "^1.10.1"
2323
},
2424
"dependencies": {
25-
"tree-sitter-css": "^0.15.0"
25+
"tree-sitter-css": "^0.19.0"
2626
}
2727
}

0 commit comments

Comments
 (0)