Skip to content

build(deps): bump actions/setup-node from 4.0.3 to 4.0.4 #283

build(deps): bump actions/setup-node from 4.0.3 to 4.0.4

build(deps): bump actions/setup-node from 4.0.3 to 4.0.4 #283

Workflow file for this run

name: Compile TS
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr checkout ${{ github.event.pull_request.number }}
- name: Install dependencies
run: yarn install
- name: Compile TS
run: yarn build
- name: Setup Git
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "Distribution builder"
git config --global credential.helper store
echo "https://${{ secrets.USERNAME }}:${{ secrets.TOKEN }}@github.com" > ~/.git-credentials
shell: bash
- name: Push Changes
run: |
git add .
git commit -am "chore(dist)"
git push