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

Commit

Permalink
Merge pull request #177 from atom/use-github-actions
Browse files Browse the repository at this point in the history
Migrate to Github Actions
  • Loading branch information
sadick254 authored Apr 26, 2021
2 parents 57531cc + f889acb commit 43066ac
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 46 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on: [push]

env:
CI: true

jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
channel: [stable, beta]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: UziTech/action-setup-atom@v2
with:
version: ${{ matrix.channel }}
- name: Install windows-build-tools
if: ${{ matrix.os == 'windows-latest' }}
run: |
npm config set msvs_version 2019
- name: Install dependencies
run: npm i
- name: Run tests
run: atom --test spec
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CSS language support in Atom
[![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)
![CI Status](https://github.com/atom/language-css/actions/workflows/main.yml/badge.svg)

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

Expand Down
29 changes: 0 additions & 29 deletions appveyor.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"coffeelint": "^1.10.1"
},
"dependencies": {
"tree-sitter-css": "^0.15.0"
"tree-sitter-css": "^0.19.0"
}
}

0 comments on commit 43066ac

Please sign in to comment.