build(deps): bump the dependencies group across 1 directory with 10 u… #1094
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: CI | |
on: [push] | |
jobs: | |
validate: | |
name: Validate the applications | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Validate | |
run: | | |
npm install -g @commercetools/cli | |
commercetools connect validate --skip analysis | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: validation-results | |
path: | | |
.connect |