-
Notifications
You must be signed in to change notification settings - Fork 130
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 canvas-drawer
- Loading branch information
Showing
46 changed files
with
9,979 additions
and
9,896 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,4 @@ | ||
{ | ||
"extends": "eslint-config-atomic", | ||
"ignorePatterns": ["dist/", "node_modules/", "spec/fixtures"] | ||
} |
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 |
---|---|---|
|
@@ -36,36 +36,40 @@ jobs: | |
apm install --production | ||
npm install --only=dev | ||
- name: Run Ubuntu tests | ||
if: ${{ contains(matrix.os, 'ubuntu') }} | ||
run: npm run build.test && npm run test | ||
|
||
# One or two of the tests are flaky on Windows/MacOs | ||
- name: Run Windows and MacOS tests | ||
if: ${{ !contains(matrix.os, 'ubuntu') }} | ||
continue-on-error: true | ||
- name: Run tests | ||
run: npm run build.test && npm run test | ||
|
||
Lint: | ||
if: "!contains(github.event.head_commit.message, '[skip ci]')" | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v2 | ||
- name: Commit lint ✨ | ||
uses: wagoid/commitlint-github-action@v2 | ||
|
||
- uses: UziTech/action-setup-atom@v1 | ||
- name: Setup PNPM | ||
uses: pnpm/[email protected] | ||
with: | ||
node-version: "12.x" | ||
- name: Install NPM dependencies | ||
run: | | ||
npm install --ignore-scripts | ||
version: latest | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Format ✨ | ||
run: pnpm test.format | ||
|
||
- name: Lint ✨ | ||
run: npm run lint | ||
run: pnpm test.lint | ||
|
||
Release: | ||
needs: [Test, Lint] | ||
if: github.ref == 'refs/heads/master' && | ||
github.event.repository.fork == false | ||
github.event.repository.fork == false && !contains(github.event.head_commit.message, '[skip release]') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ node_modules | |
pages | ||
dist | ||
.parcel-cache | ||
package-lock.json |
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,3 @@ | ||
public-hoist-pattern[]=* | ||
package-lock=false | ||
lockfile=true |
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 @@ | ||
node_modules | ||
package.json | ||
package-lock.json | ||
pnpm-lock.yaml | ||
changelog.md | ||
coverage | ||
build | ||
dist |
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
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
Oops, something went wrong.