Skip to content

Update bulk-parse.js.yml #7

Update bulk-parse.js.yml

Update bulk-parse.js.yml #7

Workflow file for this run

name: bulk-parse action
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Run bulk-parse script
run: node ./scripts/bulk-parse.js
- name: Commit and push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add json
git commit -m "Add jsonf files generated by script"
git push