Skip to content

NPM auto deprecate #436

NPM auto deprecate

NPM auto deprecate #436

name: NPM auto deprecate
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
auto-deprecate:
name: NPM auto deprecate
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node v18
uses: actions/setup-node@v4.0.2
with:
node-version: 18
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Deprecate versions
run: 'npx @favware/npm-deprecate --name "*dev*" --package "@necord/schematics"'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}