forked from piskelapp/piskel
-
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.
Hook up shortcut key to export as png
- Loading branch information
1 parent
e51a3c7
commit 51cb9a1
Showing
9 changed files
with
7,668 additions
and
9,382 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,21 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "." | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "dev-1047" | ||
versioning-strategy: increase | ||
groups: | ||
npm: | ||
patterns: | ||
- "*" | ||
- package-ecosystem: "github-actions" | ||
directory: ".github/workflows" | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "dev-1047" | ||
groups: | ||
gha: | ||
patterns: | ||
- "*" |
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,42 @@ | ||
name: test | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- dev-1047 | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
karma: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4.1.1 | ||
- name: Use Node version defined in manifest | ||
uses: volta-cli/action@v4.0.1 | ||
- name: Node.js version | ||
run: node -v | ||
- name: npm version | ||
run: npm -v | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Run Karma tests | ||
run: npm run grunt karma | ||
casper: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4.1.1 | ||
- name: Use Node version defined in manifest | ||
uses: volta-cli/action@v4.0.1 | ||
- name: Node.js version | ||
run: node -v | ||
- name: npm version | ||
run: npm -v | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Run Casper tests | ||
run: npm run grunt karma |
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
Oops, something went wrong.