Backend Upgrade #114
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: Backend Upgrade | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 9 * * 0' | |
jobs: | |
npm-check-updates: | |
if: (github.event_name == 'schedule' && github.repository == 'stolostron/console') || (github.event_name != 'schedule') | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: backend | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- run: npm i -g npm-check-updates | |
- name: npm-check-updates --target minor | |
run: ncu -e 2 -t minor > /dev/null 2>&1 || ncu --doctor -u -t minor | |
- run: npm audit fix | |
- run: npm test | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
default_author: github_actions | |
message: Upgraded package dependencies |