This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
chore(deps): update dependency @types/node to v22.10.6 (#926) #464
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/[email protected] | |
with: | |
ref: main | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
- name: Use PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: 7 | |
- 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 pnpm 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/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: 'main' | |
directory: '.' |