mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 03:59:16 +00:00
74 lines
2.3 KiB
YAML
74 lines
2.3 KiB
YAML
# 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
|
|
|
|
name: Npm audit fix and compile
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# At 2:30 on Sundays
|
|
- cron: '30 2 * * 0'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
branches: ["main", "master", "stable28", "stable27", "stable26"]
|
|
|
|
name: npm-audit-fix-${{ matrix.branches }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
with:
|
|
ref: ${{ matrix.branches }}
|
|
|
|
- name: Read package.json node and npm engines version
|
|
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.2
|
|
id: versions
|
|
with:
|
|
fallbackNode: '^20'
|
|
fallbackNpm: '^9'
|
|
|
|
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
|
|
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
|
|
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
|
|
run: |
|
|
npm audit fix
|
|
|
|
- name: Run npm ci and npm run build
|
|
if: always()
|
|
env:
|
|
CYPRESS_INSTALL_BINARY: 0
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
|
run: |
|
|
npm ci
|
|
npm run build --if-present
|
|
|
|
- name: Create Pull Request
|
|
if: always()
|
|
uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc # v5
|
|
with:
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
commit-message: "chore(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: |
|
|
Auto-generated fix of npm audit
|
|
labels: |
|
|
dependencies
|
|
3. to review
|