Bump @types/node from 22.10.2 to 22.10.3 #296
Workflow file for this run
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: Auto Commits | |
on: | |
pull_request | |
permissions: | |
contents: write | |
jobs: | |
commits: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: fregante/setup-git-user@v1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- run: | | |
corepack enable | |
yarn | |
- name: Dedupe dependencies | |
if: startsWith(github.head_ref, 'dependabot/') | |
env: | |
HUSKY: 0 | |
run: | | |
yarn dedupe | |
if [[ -n $(git status -s) ]]; then | |
git add . | |
git commit -m '[dependabot skip] Dedupe dependencies' | |
fi | |
- name: Update build | |
run: | | |
yarn laboperator-middleware compile | |
if [[ `git status -s` ]]; then \ | |
git add . | |
git commit -m '[dependabot skip] Update Build' | |
fi | |
- run: git push |