chore(deps): update dependency ts-jest to v29.1.2 (#624) #153
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: Examples | |
on: | |
push: | |
branches: [main] | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- name: Setup user | |
run: | | |
git config --global user.email [email protected] | |
git config --global user.name "Action" | |
- name: Bump version | |
run: | | |
git init | |
cd examples | |
eval $(echo yarn add vue-next-select@$(cat ../package.json | head -3 | sed 1,2d | sed 's/^.*\: "//' | sed 's/",$//')) | |
git add . | |
git commit -m 'chore(bot): bump vue-next-select' || exit 0 | |
cd .. | |
- name: Push | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: 'main' | |
directory: '.' |