Frontend Upgrade #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend Upgrade | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 10 * * 0' | |
jobs: | |
npm-check-updates: | |
if: (github.event_name == 'schedule' && github.repository == 'stolostron/console') || (github.event_name != 'schedule') | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- run: npx npm-check-updates --doctor --upgrade --target minor --reject $SKIP | |
env: | |
SKIP: '@openshift-console/dynamic-plugin-sdk,@openshift-console/dynamic-plugin-sdk-webpack,@apollo/client' | |
- run: npm audit fix | |
- run: npm test | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
default_author: github_actions | |
message: Upgraded package dependencies |