Skip to content

Commit 63c5548

Browse files
authored
Merge branch 'main' into scroll-driven-animations
2 parents a978dd7 + 8487c6f commit 63c5548

File tree

105 files changed

+4082
-2140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+4082
-2140
lines changed

.github/workflows/crowdin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020

2121
- name: crowdin action
22-
uses: crowdin/github-action@v2.7.1
22+
uses: crowdin/github-action@v2.11.0
2323
with:
2424
upload_translations: true
2525
download_translations: true

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ src/main/webapp/js/bundles
2222
.factorypath
2323

2424
*.dylib
25+
26+
# macOS
27+
.DS_Store

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
!/src/main/
33
/src/main/*
44
!/src/main/frontend/
5+
!/src/main/webapp/
6+
/src/main/webapp/js/bundles/
57

68
/.mvn/*
79
/Jenkinsfile

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ This plugin adds a visual representation of Jenkins pipelines, showing each stag
2222

2323
## Getting started
2424

25-
1. Install the [pipeline-graph-view](https://plugins.jenkins.io/pipeline-graph-view/) plugin
26-
2. Go to a pipeline run (not a job page)
27-
3. Click 'Pipeline Console'
25+
1. Install the [Pipeline Graph View](https://plugins.jenkins.io/pipeline-graph-view/) plugin
26+
2. Go to some pipeline build page (not the job page)
27+
3. Click _Pipeline Overview_
2828

2929
## Screenshots
3030

@@ -42,6 +42,10 @@ See a live demonstration from a Jenkins Contributor Summit:
4242

4343
[![Demo of Pipeline Graph View plugin](https://img.youtube.com/vi/MBI3MBY2eJ8/0.jpg)](https://www.youtube.com/watch?v=MBI3MBY2eJ8&t=3295 "Pipeline Graph View plugin")
4444

45+
## REST API
46+
47+
The REST API documentation can be found [here](https://editor-next.swagger.io/?url=https://raw.githubusercontent.com/jenkinsci/pipeline-graph-view-plugin/refs/heads/main/openapi.yaml).
48+
4549
## Contributing
4650

4751
Refer to our [contribution guidelines](./CONTRIBUTING.md).

eslint.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import reactHooks from "eslint-plugin-react-hooks";
12
import simpleImportSort from "eslint-plugin-simple-import-sort";
23
import neostandard, { plugins, resolveIgnoresFromGitignore } from "neostandard";
34

@@ -16,6 +17,15 @@ export default [
1617
},
1718
},
1819
plugins.react.configs.flat["jsx-runtime"],
20+
{
21+
plugins: {
22+
"react-hooks": reactHooks,
23+
},
24+
rules: {
25+
"react-hooks/rules-of-hooks": "error",
26+
"react-hooks/exhaustive-deps": "error",
27+
},
28+
},
1929
plugins.promise.configs["flat/recommended"],
2030
{
2131
plugins: {

0 commit comments

Comments
 (0)