Add an invocation of yarn list to see package versions in ci

pull/42/head
Skyler Grey 3 years ago
parent 023d8253ec
commit 19f1b9cded
Signed by: Minion3665
GPG Key ID: 1AFD10256B3C714D

@ -22,6 +22,8 @@ jobs:
with: with:
node-version: 19.x node-version: 19.x
- run: yarn install --immutable - run: yarn install --immutable
- name: Show versions
run: yarn run versions
- name: Compile - name: Compile
run: yarn build run: yarn build
- name: Run prettier and eslint - name: Run prettier and eslint

@ -42,7 +42,8 @@
"lint-ci": "echo 'Style checking...' && prettier --check . && echo 'Linting...' && eslint src", "lint-ci": "echo 'Style checking...' && prettier --check . && echo 'Linting...' && eslint src",
"setup": "node Installer.js", "setup": "node Installer.js",
"win-force-build": "clear | rm -r dist | tsc-suppress", "win-force-build": "clear | rm -r dist | tsc-suppress",
"audit-fix": "yarn-audit-fix" "audit-fix": "yarn-audit-fix",
"versions": "yarn versions && yarn list && node --version"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

Loading…
Cancel
Save