Skip to content

Test

Test #4

Workflow file for this run

name: Test
on:
workflow_dispatch:
jobs:
increment-semver:
runs-on: ubuntu-latest
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up git name
run: |
git config --global user.email "[email protected]"
git config --global user.name "LiprikON2"
- name: Bump package.json version
run: npm version patch
- name: Commit new version
run: |
git show
git push