-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
14,916 additions
and
13,218 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,18 +1,15 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchUpdateTypes": ["minor", "patch", "pin", "digest"], | ||
"automerge": true | ||
} | ||
], | ||
"automerge": true, | ||
"automergeStrategy": "squash", | ||
"dependencyDashboard": true, | ||
"schedule": ["every weekend"], | ||
"ignorePaths": ["legacy/**"] | ||
|
||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
extends: ['config:base'], | ||
packageRules: [ | ||
{ | ||
matchUpdateTypes: ['minor', 'patch', 'pin', 'digest'], | ||
automerge: true, | ||
}, | ||
], | ||
automerge: true, | ||
automergeStrategy: 'squash', | ||
dependencyDashboard: true, | ||
schedule: ['every weekend'], | ||
ignorePaths: ['legacy/**'], | ||
} |
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 |
---|---|---|
@@ -1,27 +1,24 @@ | ||
name: CI-test | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [18.x, 20.x, 22.x] | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 17.x, 18.x, 19.x, 20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npx yarn install | ||
- run: npx yarn test-format | ||
- run: npx yarn test-cli | ||
- run: npx yarn test | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: yarn install | ||
- run: yarn test-ci |
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,19 +1,18 @@ | ||
name: Publish on bump | ||
|
||
on: | ||
push: | ||
branches: | ||
- Qmaster | ||
|
||
on: | ||
push: | ||
branches: | ||
- Qmaster | ||
|
||
jobs: | ||
build: | ||
if: ${{ null || !github.event.pusher.email }} | ||
name: Autopublish dependabot | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checking the who pushed | ||
run: | | ||
echo "The github.event.pusher is:" | ||
echo "${{ toJson(github.event) }}" | ||
echo "And I must publish!!!" | ||
build: | ||
if: ${{ null || !github.event.pusher.email }} | ||
name: Autopublish dependabot | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checking the who pushed | ||
run: | | ||
echo "The github.event.pusher is:" | ||
echo "${{ toJson(github.event) }}" | ||
echo "And I must publish!!!" |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
test/* | ||
src/* | ||
gfx/* | ||
rollup.config.js | ||
tmp/* | ||
|
@@ -8,5 +7,4 @@ tmp/* | |
*.txt | ||
*.file | ||
*.lock | ||
*.ts | ||
legacy/ |
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,4 @@ | ||
legacy/ | ||
dist/ | ||
bin/ | ||
*.md |
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 |
---|---|---|
|
@@ -4,5 +4,3 @@ useTabs: true | |
bracketSpacing: false | ||
trailingComma: es5 | ||
singleQuote: true | ||
arrowParens: "avoid" | ||
|
Oops, something went wrong.