Skip to content

Commit af288e5

Browse files
authored
PERMISSION GRANTED (#378)
* PERMISSION GRANTED * purge build util image test * CL
1 parent 3147a4b commit af288e5

File tree

5 files changed

+1889
-1333
lines changed

5 files changed

+1889
-1333
lines changed

.github/workflows/build-util-images.yml

Lines changed: 0 additions & 53 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: License Check
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
lint:
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os:
12+
- ubuntu-24.04
13+
node-version:
14+
- "20"
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
- name: Install node ${{ matrix.node-version }}
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
cache: npm
23+
- name: Install dependencies
24+
run: npm clean-install --prefer-offline --frozen-lockfile
25+
- name: Run license cehck
26+
run: |
27+
npm install --global license-checker
28+
npx license-checker --production --summary

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
22

3+
* Granted permission
4+
35
## v3.24.3 - [March 25, 2025](https://github.com/lando/core/releases/tag/v3.24.3)
46

57
### Bug Fixes

0 commit comments

Comments
 (0)