Skip to content

Commit

Permalink
ci: Add workflow to update node dist files on master
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Oct 12, 2023
1 parent d584200 commit 032904b
Show file tree
Hide file tree
Showing 24 changed files with 97 additions and 294 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/node-dist-unchanged.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Check node dist files

on:
pull_request:


jobs:
changed_files:
runs-on: ubuntu-latest
name: Check node dist files
permissions:
pull-requests: read

steps:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v39
with:
files: js/**

- name: Run step if any file(s) in the docs folder change
if: steps.changed-files.outputs.any_changed == 'true'
run: |
echo "One or more files in the js folder has changed. Do NOT commit files in there as they will be generated automatically once a pull request is merged"
echo "List all the files that have changed: ${{ steps.changed-files.outputs.all_changed_files }}"
exit 1
21 changes: 5 additions & 16 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ jobs:
name: node
steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.2
id: versions
with:
fallbackNode: '^16'
fallbackNpm: '^7'
fallbackNode: '^20'
fallbackNpm: '^9'

- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@bea5baf987ba7aa777a8a0b4ace377a21c45c381 # v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}

Expand All @@ -61,19 +61,8 @@ jobs:
npm run stats --if-present
- name: Send bundle stats to RelativeCI
uses: relative-ci/agent-action@12ae70ae754dd23b097fc19af712a45b8426de55 # v2
uses: relative-ci/agent-action@e92b0c712e5ad0a039faf1026cbe438b8e7fed16 # v2
with:
webpackStatsFile: ./webpack-stats.json
key: ${{ secrets.RELATIVE_CI_KEY }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Check webpack build changes
run: |
bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)"
- name: Show changes on failure
if: failure()
run: |
git status
git --no-pager diff
exit 1 # make it red to grab attention
63 changes: 63 additions & 0 deletions .github/workflows/update-node-dist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Update Node dist

on:
workflow_dispatch:
push:
branches:
# implemented since 28, once branched off, add your stable branch here
- main
# - stable28

concurrency:
group: update-node-dist-${{ github.head_ref || github.ref || github.run_id }}
cancel-in-progress: true

jobs:
update-node-dist:
runs-on: ubuntu-latest
environment: update-node-dist

steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
with:
token: ${{ secrets.COMMAND_BOT_PAT }}

- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.1
id: versions
with:
fallbackNode: '^20'
fallbackNpm: '^9'

- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
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: Setup git
run: |
git config --local user.email "nextcloud-command@users.noreply.github.com"
git config --local user.name "nextcloud-command"
- name: Install dependencies & build
env:
CYPRESS_INSTALL_BINARY: 0
run: |
npm ci
npm run build --if-present
- name: Check webpack build changes
id: changes
continue-on-error: true
run: |
bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)"
- name: Add and commit
if: steps.changes.outcome == 'failure'
run: |
git add --force js/
git commit --signoff -m 'chore(assets): recompile assets'
git push origin ${{ github.head_ref }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,6 @@ cypress/snapshots/diff
# RelativeCI webpack bundle stats
webpack-stats.json
*.orig

# js folder, to be updated wth --force
/js
2 changes: 0 additions & 2 deletions js/viewer-components.js

This file was deleted.

1 change: 0 additions & 1 deletion js/viewer-components.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions js/viewer-filerobot.js

This file was deleted.

68 changes: 0 additions & 68 deletions js/viewer-filerobot.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion js/viewer-filerobot.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions js/viewer-main.js

This file was deleted.

113 changes: 0 additions & 113 deletions js/viewer-main.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion js/viewer-main.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions js/viewer-node_modules_nextcloud_dialogs_dist_legacy_mjs.js

This file was deleted.

Loading

0 comments on commit 032904b

Please sign in to comment.