From 1136d122613178d7610212e9f31be8f388c8e6bd Mon Sep 17 00:00:00 2001 From: n4n5 <56606507+Its-Just-Nans@users.noreply.github.com> Date: Tue, 30 Jul 2024 05:23:22 +0200 Subject: [PATCH] add --- .github/workflows/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c8f63a..4687fa2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,12 +36,19 @@ jobs: uses: actions/setup-node@v4 with: node-version: "16.18" + - name: Restore cached Primes + id: node-modules + uses: actions/cache/restore@v4 + with: + path: node_modules - name: npm install run: npm ci --force - name: config run: | cp src/config/app.config.example.js src/config/app.config.js cp vue.config.js.example vue.config.js + sed -i "s|publicPath: '/'|publicPath: '/serverless-invoices'|" vue.config.js + cat vue.config.js - name: building run: npm run build - name: Upload artifact