This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #177 from atom/use-github-actions
Migrate to Github Actions
- Loading branch information
Showing
5 changed files
with
29 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,6 @@ | |
"coffeelint": "^1.10.1" | ||
}, | ||
"dependencies": { | ||
"tree-sitter-css": "^0.15.0" | ||
"tree-sitter-css": "^0.19.0" | ||
} | ||
} |