-
Notifications
You must be signed in to change notification settings - Fork 560
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4705 from voxel51/release/v0.25.0
Release/v0.25.0
- Loading branch information
Showing
655 changed files
with
26,219 additions
and
6,754 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,7 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Lint App | ||
|
||
on: workflow_call | ||
|
||
jobs: | ||
eslint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/checkout@v4 | ||
- uses: dorny/paths-filter@v3 | ||
id: changes | ||
with: | ||
filters: | | ||
changes: | ||
- 'app/**' | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "16" | ||
|
||
- name: Cache Node Modules | ||
id: node-cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
app/node_modules | ||
app/.yarn/cache | ||
key: node-modules-${{ hashFiles('app/yarn.lock') }} | ||
|
||
- name: Install Dependencies | ||
if: steps.node-cache.outputs.cache-hit != 'true' | ||
run: cd app && yarn install | ||
|
||
- name: Lint ESLint packages | ||
run: | | ||
cd app | ||
ESLINT_PACKAGES=$(grep -v '^#' ./eslint-packages.txt | xargs) | ||
yarn eslint $ESLINT_PACKAGES | ||
- name: Lint Biome Packages | ||
run: | | ||
cd app | ||
yarn check |
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 |
---|---|---|
|
@@ -16,11 +16,14 @@ jobs: | |
e2e: | ||
uses: ./.github/workflows/e2e.yml | ||
|
||
lint: | ||
uses: ./.github/workflows/lint-app.yml | ||
|
||
teams: | ||
runs-on: ubuntu-latest | ||
if: github.base_ref == 'develop' | ||
if: false && github.base_ref == 'develop' # temporarily disabled | ||
steps: | ||
- uses: convictional/[email protected].1 | ||
- uses: convictional/[email protected].5 | ||
with: | ||
owner: voxel51 | ||
repo: fiftyone-teams | ||
|
@@ -29,7 +32,12 @@ jobs: | |
workflow_file_name: merge-oss.yml | ||
ref: develop | ||
wait_interval: 20 | ||
client_payload: '{ "branch": "${{ github.head_ref || github.ref_name }}" }' | ||
client_payload: | | ||
{ | ||
"author": "${{ github.event.pull_request.user.login }}", | ||
"branch": "${{ github.head_ref || github.ref_name }}", | ||
"pr": ${{ github.event.pull_request.number }} | ||
} | ||
propagate_failure: true | ||
trigger_workflow: true | ||
wait_workflow: true | ||
|
@@ -39,7 +47,10 @@ jobs: | |
|
||
all-tests: | ||
runs-on: ubuntu-latest | ||
needs: [build, test] | ||
needs: [build, lint, test] | ||
if: always() | ||
steps: | ||
- run: sh -c ${{ needs.build.result == 'success' && needs.test.result == 'success' }} | ||
- run: sh -c ${{ | ||
needs.build.result == 'success' && | ||
needs.lint.result == 'success' && | ||
needs.test.result == 'success' }} |
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.