Skip to content

[Snyk] Upgrade vue from 3.2.47 to 3.4.38 #2

[Snyk] Upgrade vue from 3.2.47 to 3.4.38

[Snyk] Upgrade vue from 3.2.47 to 3.4.38 #2

Workflow file for this run

name: Build and pack DevExtreme npm packages
on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
push:
branches: [24_2]
jobs:
build:
runs-on: devextreme-shr2
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- uses: pnpm/action-setup@v3
with:
version: 9
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: |
${{ env.STORE_PATH }}
.nx/cache
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store
- name: Install dependencies
run: |
corepack enable
pnpm install
- name: Build npm packages
run: pnpm run all:build
- name: Copy build artifacts
uses: actions/upload-artifact@v3
with:
name: devextreme-npm-packages
path: |
artifacts/npm/*.tgz
retention-days: 1