Npm audit fix and compile #165
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
| # This workflow is provided via the organization template repository | |
| # | |
| # https://github.com/nextcloud/.github | |
| # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | |
| # | |
| # SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: MIT | |
| name: Npm audit fix and compile | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # At 2:30 on Sundays | |
| - cron: '30 2 * * 0' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| branches: | |
| - ${{ github.event.repository.default_branch }} | |
| - 'stable34' | |
| - 'stable33' | |
| - 'stable32' | |
| name: npm-audit-fix-${{ matrix.branches }} | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| ref: ${{ matrix.branches }} | |
| continue-on-error: true | |
| - name: Read package.json node and npm engines version | |
| uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3 | |
| id: versions | |
| with: | |
| fallbackNode: '^24' | |
| fallbackNpm: '^11.3' | |
| - name: Set up node ${{ steps.versions.outputs.nodeVersion }} | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ steps.versions.outputs.nodeVersion }} | |
| - name: Set up npm ${{ steps.versions.outputs.npmVersion }} | |
| run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}' | |
| - name: Fix npm audit | |
| id: npm-audit | |
| uses: nextcloud-libraries/npm-audit-action@1b1728b2b4a7a78d69de65608efcf4db0e3e42d0 # v0.2.0 | |
| - name: Run npm ci | |
| if: steps.checkout.outcome == 'success' | |
| env: | |
| CYPRESS_INSTALL_BINARY: 0 | |
| run: | | |
| npm ci | |
| - name: Create Pull Request | |
| if: steps.checkout.outcome == 'success' | |
| uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 | |
| with: | |
| token: ${{ secrets.COMMAND_BOT_PAT }} | |
| commit-message: 'fix(deps): Fix npm audit' | |
| committer: GitHub <noreply@github.com> | |
| author: nextcloud-command <nextcloud-command@users.noreply.github.com> | |
| signoff: true | |
| branch: automated/noid/${{ matrix.branches }}-fix-npm-audit | |
| title: '[${{ matrix.branches }}] Fix npm audit' | |
| body: ${{ steps.npm-audit.outputs.markdown }} | |
| labels: | | |
| dependencies | |
| 3. to review |