|
@@ -27,8 +27,12 @@ jobs:
|
|
|
uses: actions/setup-node@v3
|
|
|
with:
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
- - name: Install dependencies # runs the npm ci command to install from package-lock.json
|
|
|
- run: npm ci
|
|
|
+ - uses: pnpm/action-setup@v4
|
|
|
+ with:
|
|
|
+ version: 9
|
|
|
+ run_install: |
|
|
|
+ - recursive: true
|
|
|
+ args: [--frozen-lockfile, --strict-peer-dependencies]
|
|
|
- name: Build all for production
|
|
|
run: npm run build-prod
|
|
|
- name: Upload artifacts
|