Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: layer5io/sistent
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.14.131
Choose a base ref
...
head repository: layer5io/sistent
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: refs/heads/master
Choose a head ref
Loading
Showing 302 changed files with 14,060 additions and 14,204 deletions.
5 changes: 5 additions & 0 deletions .github/build/Makefile.show-help.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DEFAULT_GOAL := show-help
# See <https://gist.github.com/klmr/575726c7e05d8780505a> for explanation.
.PHONY: show-help
show-help:
@echo "$$(tput bold)Please specify a build target. The choices are:$$(tput sgr0)";echo;sed -ne"/^## /{h;s/.*//;:d" -e"H;n;s/^## //;td" -e"s/:.*//;G;s/\\n## /---/;s/\\n/ /g;p;}" ${MAKEFILE_LIST}|LC_ALL='C' sort -f|awk -F --- -v n=$$(tput cols) -v i=19 -v a="$$(tput setaf 6)" -v z="$$(tput sgr0)" '{printf"%s%*s%s ",a,-i,$$1,z;m=split($$2,w," ");l=n-i;for(j=1;j<=m;j++){l-=length(w[j])+1;if(l<= 0){l=n-i-length(w[j])-1;printf"\n%*s ",-i," ";}printf"%s ",w[j];}printf"\n";}'|more $(shell test $(shell uname) == Darwin && echo '-Xr')
34 changes: 0 additions & 34 deletions .github/workflows/build-and-preview-site.yml

This file was deleted.

50 changes: 44 additions & 6 deletions .github/workflows/bump-meshery-version.yml
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ jobs:
token: ${{ secrets.RELEASEDRAFTER_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: '20.x'
cache: "npm"
cache-dependency-path: '**/package-lock.json'
- name: Make changes to pull request
@@ -57,7 +57,7 @@ jobs:
ui/package-lock.json
body: |
Update to Sistent v${{ needs.versions-check.outputs.current }}
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
assignees: l5io
draft: false
@@ -73,7 +73,7 @@ jobs:
token: ${{ secrets.RELEASEDRAFTER_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: '20.x'
cache: "npm"
cache-dependency-path: '**/package-lock.json'
- name: Make changes to pull request
@@ -96,10 +96,48 @@ jobs:
meshmap/package-lock.json
body: |
Update to Sistent v${{ needs.versions-check.outputs.current }}
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
assignees: l5io
draft: false
bump-layer5:
runs-on: ubuntu-latest
needs: versions-check
steps:
- name: Checkout Layer5 code
uses: actions/checkout@v4
with:
repository: layer5io/layer5
fetch-depth: 1
token: ${{ secrets.RELEASEDRAFTER_PAT }}
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: "npm"
cache-dependency-path: '**/package-lock.json'
- name: Make changes to pull request
run: npm install @layer5/sistent@${{needs.versions-check.outputs.current}} --legacy-peer-deps
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.RELEASEDRAFTER_PAT }}
commit-message: Bump sistent v${{ needs.versions-check.outputs.current }} dependencies
committer: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: true
branch: bump-sistent-bot
delete-branch: true
title: '[Chore]: Bump Sistent v${{ needs.versions-check.outputs.current }}'
add-paths: |
package.json
package-lock.json
body: |
Update to Sistent v${{ needs.versions-check.outputs.current }}
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
assignees: l5io
draft: false
bump-meshery-cloud:
runs-on: ubuntu-latest
needs: versions-check
@@ -112,7 +150,7 @@ jobs:
token: ${{ secrets.RELEASEDRAFTER_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: '20.x'
cache: "npm"
cache-dependency-path: '**/package-lock.json'
- name: Make changes to pull request
@@ -135,7 +173,7 @@ jobs:
ui/package-lock.json
body: |
Update to Sistent v${{ needs.versions-check.outputs.current }}
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
assignees: l5io
draft: false
35 changes: 0 additions & 35 deletions .github/workflows/checks.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/lint.yml

This file was deleted.

120 changes: 0 additions & 120 deletions .github/workflows/multi-platform.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/node-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Node version and Lint Check
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- '*'
paths-ignore:
- 'system/**/*'
- '.github/**/*'
- '*.md'

jobs:
compatibility-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: make setup

- name: Lint Check
run: make lint

- name: Prettier Check
run: make format-check

- name: Build Project
run: make build

- name: Run Tests
run: make tests

- name: Log Node.js Version
run: echo "Tested on Node.js version ${{ matrix.node-version }}"
Loading