Skip to content

Update

Update #3877

name: Update Dependencies
on:
schedule:
- cron: '0 0/4 * * *' # 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 C++ parser
run: npm update
- name: Install dependencies
run: npm ci
- name: Regenerate Source Files
run: node_modules/.bin/tree-sitter generate
- name: Generate parser
run: npm install
- name: Run tests
run: |
git submodule init
git submodule update
cd tree-sitter-cpp && git checkout origin/master && cd ..
cp tree-sitter-cpp/test/corpus/* test/corpus
node_modules/.bin/tree-sitter test
- 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 }}