Skip to content

NPM Auto Deprecate

NPM Auto Deprecate #31

name: NPM Auto Deprecate
on:
schedule:
- cron: "0 0 * * *"
jobs:
auto-deprecate:
name: NPM Auto Deprecate
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: Run NPM Auto Deprecate
run: yarn npm-deprecate
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}