Delete .github/workflows/Production.yml #22
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: Update Dependencies | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update_dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install and update Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt --upgrade | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install and update JavaScript dependencies | |
run: | | |
npm install | |
npm update |