Skip to content

build(deps): bump ts-node from 10.7.0 to 10.9.1 #579

build(deps): bump ts-node from 10.7.0 to 10.9.1

build(deps): bump ts-node from 10.7.0 to 10.9.1 #579

Workflow file for this run

---
name: "Test"
on:
pull_request:
branches:
- main
jobs:
test: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- run: |
yarn
- run: |
yarn all
- name: Check for diff
id: diff
run: echo "::set-output name=GIT_STATUS::$(git status -s dist/)"
- name: Push build
if: ${{ steps.diff.outputs.GIT_STATUS != '' }}
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add dist/*
git commit -m "chore: Build Source"
git push