Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Create outdated.yml #55

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/outdated.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: "Outdated packages"

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch: null

permissions: {}

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

env:
NPM_CONFIG_FUND: "false"

jobs:
front_end_packages:
name: "Node.js packages"
runs-on: "ubuntu-22.04"
timeout-minutes: 5
steps:
-
name: "Checkout repository"
uses: "actions/checkout@v4"
-
name: "Set up Node.js"
uses: "actions/setup-node@v4"
with:
node-version: "20"
cache: "npm"
-
name: "Configure npm"
run: "npm config set engine-strict true"
-
name: "Install production dependencies"
run: "npm ci"
-
name: "Check for outdated production packages"
run: "npm outdated"
Loading