Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[vtadmin-web] Upgrade to node v16.13.0 LTS #9136

Merged
merged 8 commits into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/vtadmin_web_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/setup-node@v2
with:
# node-version should match package.json
node-version: '14.15'
node-version: '16.13.0'

- name: Install dependencies
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vtadmin_web_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/setup-node@v2
with:
# node-version should match package.json
node-version: '14.15'
node-version: '16.13.0'

- name: Install dependencies
run: npm install
Expand Down
5 changes: 4 additions & 1 deletion web/vtadmin/.stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier"
]
],
"rules": {
"at-rule-no-unknown": null
}
}
5 changes: 5 additions & 0 deletions web/vtadmin/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# VTAdmin

## Prerequisites

- [node](https://nodejs.org) >= 16.13.0 LTS
- npm >= 8.1.0 (comes with node)

## Available scripts

Scripts for common and not-so-common tasks. These are always run from the `vitess/web/vtadmin` directory (although some of them have counterparts in `vitess/Makefile`):
Expand Down
Loading