Chore(deps): Bump npm from 9.8.1 to 10.0.0 #227
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: UCC Gen Validation | |
on: [pull_request] | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
make dev-install-dependencies-pack | |
make dev-install-dependencies-pack-sudo | |
make dev-install-dependencies-for-development | |
- name: Export current snapshot of app | |
run: echo "SDLAPP_VERSION_CURRENT_SNAPSHOT=$(jq -r '.meta.version' globalConfig.json)" >> $GITHUB_ENV | |
- name: Validate release | |
run: | | |
scripts/pack.sh \ | |
--version "${{ env.SDLAPP_VERSION_CURRENT_SNAPSHOT }}" \ | |
--input TA_dataset \ | |
--output output \ | |
--release release |