Skip to content

Commit b988930

Browse files
reynoldsalecpirog
andauthoredDec 8, 2023
Dial fully for lando update (#27)
* Dial fully for `lando update` * Update to node 18 * isolate riff * isolate riff 2 --------- Co-authored-by: Mike Pirog <[email protected]>
1 parent 74d9521 commit b988930

20 files changed

+15985
-4603
lines changed
 

‎.github/workflows/pr-docs-tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os:
1212
- ubuntu-22.04
1313
node-version:
14-
- '16'
14+
- '18'
1515
steps:
1616
# Install deps and cache
1717
- name: Checkout code
@@ -20,12 +20,12 @@ jobs:
2020
uses: actions/setup-node@v3
2121
with:
2222
node-version: ${{ matrix.node-version }}
23-
cache: yarn
24-
- name: Install Yarn dependencies
25-
run: yarn install --prefer-offline --frozen-lockfile
23+
cache: npm
24+
- name: Install dependencies
25+
run: npm clean-install --prefer-offline --frozen-lockfile
2626

2727
# Run tests
2828
- name: Run linter
29-
run: yarn docs:lint
29+
run: npm run docs:lint
3030
- name: Test build
31-
run: yarn docs:build
31+
run: npm run docs:build

‎.github/workflows/pr-dotnet-tests-next.yml

-53
This file was deleted.

‎.github/workflows/pr-dotnet-tests.yml

+13-10
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
leia-test:
1515
- examples/2.1
1616
lando-version:
17-
- 3-dev
17+
- 3-dev-slim
1818
os:
1919
- ubuntu-22.04
2020
node-version:
21-
- '16'
21+
- '18'
2222
steps:
2323
- name: Checkout code
2424
uses: actions/checkout@v3
@@ -27,20 +27,23 @@ jobs:
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
registry-url: https://registry.npmjs.org
30-
cache: yarn
31-
- name: Install Yarn dependencies
32-
run: yarn install --prefer-offline --frozen-lockfile
30+
cache: npm
31+
- name: Install dependencies
32+
run: npm clean-install --prefer-offline --frozen-lockfile
33+
- name: Bundle Deps
34+
uses: lando/prepare-release-action@v3
35+
with:
36+
lando-plugin: true
37+
version: dev
38+
sync: false
3339
- name: Setup lando ${{ matrix.lando-version }}
3440
uses: lando/setup-lando@v2
3541
with:
3642
lando-version: ${{ matrix.lando-version }}
3743
config: |
38-
plugins.@lando/dotnet=/home/runner/work/dotnet/dotnet
44+
setup.skipCommonPlugins=true
45+
setup.plugins.@lando/dotnet=/home/runner/work/dotnet/dotnet
3946
telemetry: false
40-
- name: Verify Lando works and we are dogfooding this plugin for tests
41-
run: |
42-
lando version
43-
lando config --path plugins | grep dotnet | grep /home/runner/work/dotnet/dotnet || (echo "::error:: Not dogfooding this plugin correctly!" && exit 1)
4447
- name: Run Leia Tests
4548
uses: lando/run-leia-action@v2
4649
with:

‎.github/workflows/pr-linter.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os:
1212
- ubuntu-22.04
1313
node-version:
14-
- '16'
14+
- '18'
1515
steps:
1616
# Install deps and cache
1717
- name: Checkout code
@@ -20,10 +20,10 @@ jobs:
2020
uses: actions/setup-node@v3
2121
with:
2222
node-version: ${{ matrix.node-version }}
23-
cache: yarn
24-
- name: Install Yarn dependencies
25-
run: yarn install --prefer-offline --frozen-lockfile
23+
cache: npm
24+
- name: Install dependencies
25+
run: npm clean-install --prefer-offline --frozen-lockfile
2626

2727
# Run the linter
2828
- name: Run code linter
29-
run: yarn lint
29+
run: npm run lint

‎.github/workflows/pr-unit-tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- ubuntu-22.04
1515
- macos-12
1616
node-version:
17-
- '16'
17+
- '18'
1818
steps:
1919
# Install deps and cache
2020
- name: Checkout code
@@ -23,10 +23,10 @@ jobs:
2323
uses: actions/setup-node@v3
2424
with:
2525
node-version: ${{ matrix.node-version }}
26-
cache: yarn
27-
- name: Install Yarn dependencies
28-
run: yarn install --prefer-offline --frozen-lockfile
26+
cache: npm
27+
- name: Install dependencies
28+
run: npm clean-install --prefer-offline --frozen-lockfile
2929

3030
# Run unit tests
3131
- name: Run unit tests
32-
run: yarn test:unit
32+
run: npm run test:unit

‎.github/workflows/release.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
os:
1717
- ubuntu-22.04
1818
node-version:
19-
- '16'
19+
- '18'
2020
steps:
2121
# Install deps and cache
2222
- name: Checkout code
@@ -26,19 +26,19 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
registry-url: https://registry.npmjs.org
29-
cache: yarn
30-
- name: Install Yarn dependencies
31-
run: yarn install --prefer-offline --frozen-lockfile
29+
cache: npm
30+
- name: Install dependencies
31+
run: npm clean-install --prefer-offline --frozen-lockfile
3232

3333
# Let's do tests rq just to make sure we dont push something that is fundamentally broken
3434
- name: Lint code
35-
run: yarn lint
35+
run: npm run lint
3636
- name: Run unit tests
37-
run: yarn test:unit
37+
run: npm run test:unit
3838

3939
# Prepare release.
4040
- name: Prepare release
41-
uses: lando/prepare-release-action@v2
41+
uses: lando/prepare-release-action@v3
4242
with:
4343
lando-plugin: true
4444

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ _site
4040
docs/.vuepress/.cache
4141
docs/.vuepress/.temp
4242
docs/.vuepress/dist
43+
44+
# YARN
45+
yarn.lock

‎.lando.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: lando-dotnet-plugin
22
services:
33
node:
4-
type: node:14
4+
type: node:18
55
build:
6-
- yarn install
6+
- npm install
77
scanner: false
88
ssl: false
99
sslExpose: false
1010
tooling:
1111
node:
1212
service: node
13-
yarn:
13+
npm:
1414
service: node

‎.node-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16
1+
18

‎.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.github
2+
.nyc_output
3+
coverage
24
docs
35
examples
46
guides

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.0.0 - [December 7, 2023](https://github.com/lando/dotnet/releases/tag/v1.0.0)
2+
3+
* Dialed fully for `lando update`
4+
15
## v0.8.1 - [December 1, 2023](https://github.com/lando/dotnet/releases/tag/v0.8.1)
26

37
* Bumped `@babel/traverse` from `7.20.5` to `7.23.2` [#26](https://github.com/lando/dotnet/issues/26)
File renamed without changes.

‎docs/.vuepress/public/.!77120!favicon.ico

Whitespace-only changes.

‎docs/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ However if you would like to manually install the plugin, update it to the bleed
2121
mkdir -p ~/.lando/plugins
2222

2323
# Install plugin
24-
# NOTE: Modify the "yarn add @lando/dotnet" line to install a particular version eg
25-
# yarn add @lando/dotnet@0.5.2
24+
# NOTE: Modify the "npm install @lando/dotnet" line to install a particular version eg
25+
# npm install @lando/dotnet@0.5.2
2626
docker run --rm -it -v ${HOME}/.lando/plugins:/plugins -w /tmp node:14-alpine sh -c \
27-
"yarn init -y \
28-
&& yarn add @lando/dotnet --production --flat --no-default-rc --no-lockfile --link-duplicates \
29-
&& yarn install --production --cwd /tmp/node_modules/@lando/dotnet \
27+
"npm init -y \
28+
&& npm install @lando/dotnet --production --flat --no-default-rc --no-lockfile --link-duplicates \
29+
&& npm install --production --cwd /tmp/node_modules/@lando/dotnet \
3030
&& mkdir -p /plugins/@lando \
3131
&& mv --force /tmp/node_modules/@lando/dotnet /plugins/@lando/dotnet"
3232

‎docs/development.md

+14-16
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ At the very least you will need to have the following installed:
1414
* [Lando 3.5.0+](https://docs.lando.dev/basics/installation.html), preferably installed [from source](https://docs.lando.dev/basics/installation.html#from-source).
1515
* [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
1616

17-
While not a hard requirement it's also probably a good idea to install both `node` 14 and `yarn`
18-
19-
* [Node 14](https://nodejs.org/dist/latest-v14.x/)
20-
* [Yarn](https://classic.yarnpkg.com/lang/en/docs/install)
17+
While not a hard requirement it's also probably a good idea to install `node` 18
18+
* [Node 18](https://nodejs.org/dist/latest-v18.x/)
2119

2220
## Installation
2321

@@ -28,8 +26,8 @@ git clone https://github.com/lando/dotnet.git && cd dotnet
2826
# Install dependencies with lando
2927
lando start
3028

31-
# Or install them with yarn
32-
yarn
29+
# Or install them with npm
30+
npm install
3331
```
3432

3533
## Working
@@ -60,10 +58,10 @@ If you want to help with contributing documentation here are some useful command
6058

6159
```bash
6260
# launch local docs site
63-
yarn docs:dev
61+
npm run docs:dev
6462
6563
# build docs locally
66-
yarn docs:build
64+
npm run docs:build
6765
```
6866

6967
If you are more interested in the internals of the docs they use [VuePress2](https://v2.vuepress.vuejs.org/) and our [Special theme](https://vuepress-theme-default-plus.lando.dev).
@@ -88,7 +86,7 @@ And then you can run the tests with the below.
8886

8987
```bash
9088
# Run unit tests
91-
yarn test:unit
89+
npm run test:unit
9290
```
9391

9492
### Leia Tests
@@ -115,21 +113,21 @@ Destroy tests
115113
lando destroy -y
116114
```
117115

118-
Note that the headers here are important and are defined in our `yarn generate:tests` script. The _Start up tests_ header specifies things that should run before the main series of tests. _Verification commands_ is the main body of tests and is required. _Destroy tests_ specifies any needed clean up commands to run.
116+
Note that the headers here are important and are defined in our `npm run generate:tests` script. The _Start up tests_ header specifies things that should run before the main series of tests. _Verification commands_ is the main body of tests and is required. _Destroy tests_ specifies any needed clean up commands to run.
119117

120118
If you check out the various READMEs in our [examples](https://github.com/lando/dotnet/tree/main/examples) you will notice that they are all Leia tests.
121119

122120
Before running all or some of the tests you will need to generate them.
123121

124122
```bash
125123
# Generate tests
126-
yarn generate:tests
124+
npm run generate:tests
127125
128126
# Run ALL the tests, this will likely take a long time
129-
yarn test:leia
127+
npm run test:leia
130128
131129
# Run the tests for a single example
132-
yarn leia examples/mariadb-10.2/README.md -c 'Destroy tests'
130+
npm run leia examples/mariadb-10.2/README.md -c 'Destroy tests'
133131
```
134132

135133
If you've created new testable examples then you will also need to let GitHub Actions know so they can run on pull requests.
@@ -145,7 +143,7 @@ jobs:
145143
matrix:
146144
leia-tests:
147145
# This should be the filename, without .leia.js extension in the test directory
148-
# NOTE that you will need to run yarn generate:tests to see these
146+
# NOTE that you will need to run npm run generate:tests to see these
149147
- test: platform-sh-maria-db-10-1-example
150148
# This should be the directory that the test was generated from
151149
source: examples/mariadb-10.2
@@ -165,9 +163,9 @@ Also note that if you create a "pre-release" it will tag the `npm` package with
165163

166164
```bash
167165
# Will pull the most recent GitHub release
168-
yarn add @lando/dotnet
166+
npm install @lando/dotnet
169167
# Will pull the most recent GitHub pre-release
170-
yarn add @lando/dotnet@edge
168+
npm install @lando/dotnet@edge
171169
```
172170

173171
## Contribution

0 commit comments

Comments
 (0)
Please sign in to comment.