-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: GitHub Actions <[email protected]>
- Loading branch information
1 parent
a8823bf
commit 476c0c6
Showing
10 changed files
with
1,283 additions
and
2,122 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,3 +1,4 @@ | ||
* text=auto eol=lf | ||
*.glb filter=lfs diff=lfs merge=lfs -text | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text |
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,11 @@ | ||
--- | ||
title: Deprecated dependencies | ||
labels: maintenance | ||
--- | ||
The following dependencies are deprecated: | ||
|
||
{% for dependency in env.DEPRECATED.split(',') %} | ||
- **{{ dependency }}** | ||
{% endfor %} | ||
|
||
Check out the [build]({{ env.RUN_URL }}) for details. |
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 |
---|---|---|
|
@@ -13,12 +13,15 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
lfs: true | ||
ref: ${{ github.event.pull_request.head.repo.full_name == github.repository && | ||
github.event.pull_request.head.ref || '' }} | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12 | ||
- run: git config --global user.email "[email protected]" | ||
- run: git config --global user.name "GitHub Actions" | ||
- run: yarn --frozen-lockfile | ||
- run: yarn checkUnknownFiles | ||
- run: yarn lint | ||
- env: | ||
GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }} | ||
|
@@ -48,7 +51,6 @@ jobs: | |
uses: actions/upload-artifact@v2 | ||
with: | ||
path: "**/__image_snapshots__/__diff_output__" | ||
- run: yarn checkUnknownFiles | ||
- if: matrix.os == 'ubuntu-latest' && matrix.node == 12 | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
|
@@ -70,6 +72,7 @@ jobs: | |
- ubuntu-latest | ||
name: build | ||
on: | ||
pull_request: {} | ||
push: | ||
branches: | ||
- "**" | ||
- master |
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 @@ | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: true | ||
- continue-on-error: true | ||
id: check-deprecated-js-deps | ||
uses: tinovyatkin/action-check-deprecated-js-deps@v1 | ||
- env: | ||
DEPRECATED: ${{ steps.check-deprecated-js-deps.outputs.deprecated }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
RUN_URL: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} | ||
id: create-deprecation-issue | ||
if: ${{ steps.check-deprecated-js-deps.outputs.deprecated }} | ||
uses: JasonEtco/create-an-issue@v2 | ||
with: | ||
filename: .github/DEPRECATED_DEPENDENCIES_ISSUE_TEMPLATE.md | ||
update_existing: true | ||
- if: ${{ !steps.check-deprecated-js-deps.outputs.deprecated && | ||
steps.create-deprecation-issue.outputs.number }} | ||
uses: peter-evans/close-issue@v1 | ||
with: | ||
comment: Auto-closing the issue | ||
issue-number: ${{ steps.create-deprecation-issue.outputs.number }} | ||
name: deprecated-dependencies | ||
on: | ||
schedule: | ||
- cron: 0 5 * * MON |
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 |
---|---|---|
|
@@ -3,8 +3,7 @@ image: | |
tasks: | ||
- before: sudo docker-up | ||
name: Docker Deamon | ||
- init: git lfs pull && echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" | ||
>>~/.npmrc && yarn --frozen-lockfile | ||
- init: eval $(gitpod-env-per-project) && git lfs pull && yarn --frozen-lockfile | ||
vscode: | ||
extensions: | ||
- [email protected]:8jjyZYuYF6yW6nwsAiulrg== | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ export default { | |
'foo', | ||
'bar', | ||
]) | ||
|
||
return resolve() | ||
}, 100) | ||
) | ||
|
Oops, something went wrong.