This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
forked from atom/first-mate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #3 from pulsar-edit/update-finalize-decaf
Misc Updates, Cleanup After Decaf
- Loading branch information
Showing
30 changed files
with
4,110 additions
and
2,084 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 |
---|---|---|
@@ -1,26 +1,25 @@ | ||
name: CI | ||
name: CI Tests | ||
|
||
on: [push] | ||
|
||
env: | ||
CI: true | ||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
Test: | ||
test: | ||
name: Test | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
os: [ubuntu-20.04, macos-latest, windows-2019] | ||
fail-fast: false | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- 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: npm test | ||
- name: Checkout our Source | ||
uses: actions/checkout@v3 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Install Dependencies | ||
run: npm install | ||
- name: Run Tests | ||
run: npm test |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
node_modules/ | ||
.DS_Store | ||
npm-debug.log | ||
lib/ | ||
api.json |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = (grunt) => { | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON("package.json") | ||
|
||
}); | ||
|
||
grunt.loadNpmTasks("grunt-atomdoc"); | ||
}; |
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 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,9 @@ | ||
|
||
module.exports = { | ||
ScopeSelector: require("./scope-selector.js"), | ||
GrammarRegistry: require("./grammar-registry.js"), | ||
Grammar: require("./grammar.js"), | ||
get OnigRegExp() { | ||
return require("oniguruma").OnigRegExp; | ||
} | ||
}; |
Oops, something went wrong.