Skip to content

Commit

Permalink
ci: test for outdated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
theblockstalk committed Jul 11, 2024
1 parent 2a39e87 commit 0edd2d1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,15 @@ jobs:
path: "zap-api-scan-report.html"
# Exit with the exit code of the ZAP scan
- run: exit "${{ steps.zap_scan.outputs.EXIT_CODE }}"

check-outdated-packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Check for outdated packages
uses: actions/setup-node@v4
with:
node-version: 22.3.0
cache: yarn
- run: yarn outdated || echo "WARNING:Packages outdate. Update packages with 'yarn upgrade-interactive --latest'"

0 comments on commit 0edd2d1

Please sign in to comment.