diff --git a/.github/workflows/auto_publish_release.yml b/.github/workflows/auto_publish_release.yml index 5e0fd5d86..611cfcd84 100644 --- a/.github/workflows/auto_publish_release.yml +++ b/.github/workflows/auto_publish_release.yml @@ -26,6 +26,11 @@ jobs: with: ref: ${{ env.MERGE_SHA }} + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Install run: yarn install diff --git a/package.json b/package.json index b085c9e1a..7137b6469 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "1.5.0", "private": true, "license": "GPL-3.0-only", + "scripts": { "build": "vue-cli-service build", "build:report": "vue-cli-service build --report", @@ -20,6 +21,7 @@ "test:unit": "vue-cli-service test:unit", "test": "yarn run test:unit || exit 1; yarn run coverage:e2e --headless" }, + "dependencies": { "@apollo/client": "^3.5.8", "@hpcc-js/wasm": "1.13", @@ -48,6 +50,7 @@ "vuetify": "^2.6.10", "vuex": "^3.6.2" }, + "devDependencies": { "@babel/core": "^7.14.8", "@babel/eslint-parser": "^7.16.5",