Bump @testing-library/jest-dom from 6.5.0 to 6.6.3 #395
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 Increase Extension Version Number | |
on: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: write | |
jobs: | |
incversion: | |
name: Increment Version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Initializes everything for tfx cli to run correctly | |
- name: Initialize npm | |
run: | | |
npm install --legacy-peer-deps | |
npm run build | |
- name: Increase Extension Version | |
run: npx tfx extension create --rev-version --manifest-globs azure-devops-extension.json src/**/*.json | |
- name: Commit and push Change | |
uses: EndBug/add-and-commit@v7 | |
with: | |
add: 'azure-devops-extension.json' | |
message: 'bumping patch version number' | |
push: true | |
signoff: true | |