forked from node-red/node-red
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'node-red/master'
- Loading branch information
Showing
598 changed files
with
114,425 additions
and
20,395 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
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,15 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "monthly" | ||
groups: | ||
github-actions: | ||
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 |
---|---|---|
|
@@ -14,25 +14,25 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out node-red repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
path: 'node-red' | ||
- name: Check out node-red-docker repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'node-red/node-red-docker' | ||
path: 'node-red-docker' | ||
- name: Check out node-red.github.io repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'node-red/node-red.github.io' | ||
path: 'node-red.github.io' | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '16' | ||
- run: node ./node-red/.github/scripts/update-node-red-docker.js | ||
- name: Create Docker Pull Request | ||
uses: peter-evans/create-pull-request@v2 | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.NR_REPO_TOKEN }} | ||
committer: GitHub <[email protected]> | ||
|
@@ -48,7 +48,7 @@ jobs: | |
This PR was auto-generated by a GitHub Action. Any questions, speak to @knolleary | ||
- run: node ./node-red/.github/scripts/update-node-red-website.js | ||
- name: Create Website Pull Request | ||
uses: peter-evans/create-pull-request@v2 | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.NR_REPO_TOKEN }} | ||
committer: GitHub <[email protected]> | ||
|
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,25 +12,19 @@ permissions: | |
jobs: | ||
build: | ||
permissions: | ||
checks: write # for coverallsapp/github-action to create new checks | ||
contents: read # for actions/checkout to fetch code | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [14, 16] | ||
node-version: [18, 20, 22] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install Dependencies | ||
run: npm install | ||
- name: Run tests | ||
run: | | ||
npm run test | ||
- name: Publish to coveralls.io | ||
if: ${{ matrix.node-version == 14 }} | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ github.token }} |
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 |
---|---|---|
|
@@ -34,3 +34,4 @@ pki/untrusted/ | |
|
||
.nyc_output | ||
sync.ffs_db | ||
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
Oops, something went wrong.