Bump lodash from 4.17.23 to 4.18.1 #4
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-forgejo-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test (npm smoke) | |
| if: contains(github.server_url, 'git.atlastechsolutions.co.uk') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: https://github.com/actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.FORGEJO_TOKEN }} | |
| - name: Setup Node 24 | |
| run: | | |
| set -euo pipefail | |
| export DEBIAN_FRONTEND=noninteractive | |
| apt-get update -qq | |
| apt-get install -y -qq ca-certificates curl gnupg | |
| curl -fsSL https://deb.nodesource.com/setup_24.x | bash - | |
| apt-get install -y -qq nodejs | |
| - run: npm ci | |
| - run: npm run test:server | |
| - run: npm run test:tags | |
| dco: | |
| name: DCO sign-off | |
| if: contains(github.server_url, 'git.atlastechsolutions.co.uk') && github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: https://github.com/actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.FORGEJO_TOKEN }} | |
| - run: bash .github/scripts/verify-dco.sh | |
| required: | |
| name: Required checks | |
| if: always() && contains(github.server_url, 'git.atlastechsolutions.co.uk') | |
| runs-on: ubuntu-latest | |
| needs: [test, dco] | |
| steps: | |
| - run: | | |
| if [[ "${{ needs.test.result }}" != "success" ]]; then exit 1; fi | |
| if [[ "${{ github.event_name }}" == "pull_request" && "${{ needs.dco.result }}" != "success" ]]; then exit 1; fi | |
| echo "All required CI checks passed." |