forked from gosling-lang/gosling.js
-
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 branch 'master' into mp/clone_performance
- Loading branch information
Showing
232 changed files
with
34,882 additions
and
2,650 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
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Question | ||
url: https://www.biostars.org/tag/gosling.js/ | ||
about: Please ask questions on BioStars (https://www.biostars.org/tag/gosling/) or Stack Overflow (https://stackoverflow.com/tags/gosling). | ||
url: https://github.com/gosling-lang/gosling.js/discussions/new/choose | ||
about: Please ask questions in the Discussions section. |
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,63 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
env: | ||
FORCE_COLOR: "1" | ||
|
||
jobs: | ||
|
||
Build: | ||
name: Build Editor | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: yarn install | ||
- run: yarn build-editor | ||
env: | ||
NODE_OPTIONS: '--max_old_space_size=4096' | ||
|
||
Test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: yarn install | ||
- run: | | ||
yarn build-types # typecheck | ||
yarn coverage | ||
env: | ||
NODE_OPTIONS: '--max_old_space_size=4096' | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: true | ||
|
||
Lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: yarn install | ||
- name: ESLint | ||
run: yarn eslint src/ editor/ | ||
- name: Assert schemas are all up to date | ||
run: | | ||
yarn schema | ||
git diff --exit-code |
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,30 @@ | ||
name: Deploy Editor | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/master' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: yarn install | ||
- run: yarn build-editor | ||
env: | ||
NODE_OPTIONS: '--max_old_space_size=8192' | ||
- name: Deploy editor | ||
run: | | ||
git config --global user.name "[email protected]" | ||
git config --global user.email "GitHub Action" | ||
git remote set-url origin https://${ACCESS_TOKEN}@github.com/${REPO}.git | ||
yarn deploy | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
REPO: ${{ github.repository }} |
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 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,44 @@ | ||
name: Semantic Pull Request | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
main: | ||
name: Validate PR title | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
# Configure which types are allowed (newline-delimited). | ||
types: | | ||
feat | ||
fix | ||
ci | ||
chore | ||
docs | ||
refactor | ||
test | ||
# Configure which scopes are allowed. | ||
scopes: | | ||
core | ||
track | ||
data-fetcher | ||
api | ||
editor | ||
# Configure if a scope must always be provided. | ||
requireScope: true | ||
# Configure which scopes are disallowed in PR titles (newline-delimited). | ||
# Anything but `feat` and `fix` | ||
disallowScopes: | | ||
ci | ||
chore | ||
docs | ||
refactor | ||
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
/lib | ||
/bin | ||
.vscode | ||
.idea | ||
.pnp.js | ||
.DS_Store | ||
.env.local | ||
|
Oops, something went wrong.