Add an invocation of yarn list to see package versions in ci
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index c1da375..325f0d8 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -22,6 +22,8 @@
               with:
                   node-version: 19.x
             - run: yarn install --immutable
+            - name: Show versions
+              run: yarn run versions
             - name: Compile
               run: yarn build
             - name: Run prettier and eslint
diff --git a/package.json b/package.json
index 5a250a4..9bdd9f8 100644
--- a/package.json
+++ b/package.json
@@ -42,7 +42,8 @@
         "lint-ci": "echo 'Style checking...' && prettier --check . && echo 'Linting...' && eslint src",
         "setup": "node Installer.js",
         "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": {
         "type": "git",