fix(deps): update dependency jquery to v3.7.1 #1749
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Playgrounds tests | |
concurrency: | |
group: wf-${{github.event.pull_request.number || github.sha}}-${{github.workflow}} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: [24_1] | |
jobs: | |
build: | |
name: build | |
strategy: | |
fail-fast: false | |
runs-on: devextreme-shr2 | |
timeout-minutes: 15 | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Restore npm cache | |
uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-node-modules | |
- name: Run npm install | |
run: npm install --no-audit --no-fund | |
- name: Build | |
working-directory: ./packages/devextreme | |
run: npm run build | |
- name: Zip artifacts | |
working-directory: ./packages/devextreme | |
run: | | |
7z a -tzip -mx3 -mmt2 artifacts.zip artifacts scss/bundles | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: devextreme-artifacts | |
path: ./packages/devextreme/artifacts.zip | |
retention-days: 1 | |
test: | |
name: ${{ matrix.ARGS.platform }} | |
needs: [build] | |
strategy: | |
fail-fast: false | |
matrix: | |
ARGS: [ | |
{ platform: "angular" }, | |
{ platform: "react" }, | |
{ platform: "vue" }, | |
] | |
runs-on: devextreme-shr2 | |
timeout-minutes: 60 | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v4 | |
- name: Setup Chrome | |
uses: ./.github/actions/setup-chrome | |
with: | |
chrome-version: '121.0.6167.160' | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Restore npm cache | |
uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-node-modules | |
- name: Run npm install | |
run: npm install --no-audit --no-fund | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: devextreme-artifacts | |
path: ./packages/devextreme | |
- name: Unpack artifacts | |
working-directory: ./packages/devextreme | |
run: 7z x artifacts.zip -aoa | |
- name: Build | |
working-directory: ./packages/devextreme-${{ matrix.ARGS.platform }} | |
run: npm run pack | |
- name: Check sources compilation | |
working-directory: ./apps/${{ matrix.ARGS.platform }} | |
run: npm run build | |
- name: Run test | |
if: ${{ matrix.ARGS.platform != 'angular' }} | |
working-directory: ./apps/${{ matrix.ARGS.platform }} | |
run: npm run test |