Avoid running tests in update workflow #462
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: | |
schedule: | |
- cron: '0 0 * * *' # every day at midnight | |
push: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16' | |
- name: Update CPP parser | |
run: npm update | |
- name: Install dependencies | |
run: npm ci | |
- name: Regenerate Source Files | |
run: node_modules/.bin/tree-sitter generate --abi 14 | |
- name: Generate parser | |
run: npm install | |
- name: Commit changes | |
run: | | |
git config user.name "GitHub" | |
git config user.email "[email protected]" | |
git commit -am "Update dependencies and regenerate parser" || echo 'No commit necessary!' | |
git clean -xf | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: Update dependencies | |
title: Update dependencies | |
branch: update-dependencies-pr | |
base: ${{ github.head_ref }} |