Bump lodash from 4.17.21 to 4.17.23 #3
This file contains hidden or 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: Run CI build script | |
| on: | |
| workflow_call: | |
| pull_request: | |
| types: [ opened, reopened, edited, synchronize ] | |
| branches: | |
| - master | |
| jobs: | |
| quality_control: | |
| name: Execute code quality checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 10 | |
| - name: Mark repository as safe | |
| run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
| - name: Setup python | |
| uses: actions/setup-python@v4 | |
| id: setup-python | |
| with: | |
| python-version: 3.12 | |
| - name: Run pipenv | |
| uses: tiagovrtr/actions-pipenv@v1 | |
| with: | |
| pipenv-version: v2023.12.1 | |
| - run: pipenv --python ${{ steps.setup-python.outputs.python-path }} | |
| - name: Run tests and code quality checks | |
| run: | | |
| pipenv install | |
| pipenv run python bin/ci.py --verbose --teardown | |
| env: | |
| COMPOSER_ROOT_VERSION: ${{ vars.COMPOSER_ROOT_VERSION }} |