Skip to content

Commit

Permalink
chore: test without dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tabathadelane committed May 12, 2023
1 parent 8da80f9 commit 8c56018
Showing 1 changed file with 22 additions and 23 deletions.
45 changes: 22 additions & 23 deletions .github/workflows/check-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,49 @@ name: Check images

on:
workflow_dispatch:
schedule:
- cron: '0 17 * * 2' # 9AM PST (5PM UTC) on Tuesday mornings
pull_request:
branch:
- tabatha/images-workflow2
# schedule:
# - cron: '0 17 * * 2' # 9AM PST (5PM UTC) on Tuesday mornings

env:
BOT_NAME: nr-opensource-bot
BOT_EMAIL: opensource+bot@newrelic.com

jobs:
check-images:
name: Convert or delete
name: Convert to WebP/Remove unused
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
ref: develop
ref: tabatha/images-workflow2
persist-credentials: false

- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install dependencies
run: yarn add glob10@npm:glob@^10.0.0 commander@8.3.0 webp-converter@2.3.3
run: yarn install --frozen-lockfile

- name: Remove unused images
run: yarn remove-unused-images

- name: Convert images to WEBP
run: yarn convert-to-webp -g

- name: Commit changes
id: commit-changes
run: |
git config --local user.email "${{ env.BOT_EMAIL }}"
git config --local user.name "${{ env.BOT_NAME }}"
git add .src/images
git commit -m 'chore: remove unused images & convert to webp'
echo "commit=true" >> $GITHUB_OUTPUT
- name: Push Commit
if: steps.commit-changes.outputs.commit == 'true'
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.DEVEX_OPENSOURCE_BOT_TOKEN }}
branch: develop
# - name: Commit changes
# id: commit-changes
# run: |
# git config --local user.email "${{ env.BOT_EMAIL }}"
# git config --local user.name "${{ env.BOT_NAME }}"
# git add .src/images
# git commit -m 'chore: remove unused images & convert to webp'
# echo "commit=true" >> $GITHUB_OUTPUT
# - name: Push Commit
# if: steps.commit-changes.outputs.commit == 'true'
# uses: ad-m/github-push-action@v0.6.0
# with:
# github_token: ${{ secrets.DEVEX_OPENSOURCE_BOT_TOKEN }}
# branch: develop

0 comments on commit 8c56018

Please sign in to comment.