Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

Update packages

Update packages #57

Workflow file for this run

on:
schedule:
- cron: "0 0 * * 6"
name: Update packages
jobs:
release:
name: Update npm packages
runs-on: ubuntu-latest
steps:
- name: Update npm packages
uses: technote-space/create-pr-action@v2
with:
EXECUTE_COMMANDS: |
rm package-lock.json
npx npm-check-updates -u --packageFile package.json
npm install
COMMIT_MESSAGE: 'chore: update npm dependencies'
COMMIT_NAME: 'GitHub Actions'
PR_BRANCH_NAME: 'chore-npm-update-${PR_ID}'
PR_TITLE: 'chore: update npm dependencies'