deprecation notice (#61) #59
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: Coverage badges generation & version bump | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.11.0 | |
with: | |
access_token: ${{ github.token }} | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2.2.4 | |
with: | |
version: latest | |
- name: Setup node | |
uses: actions/setup-node@v3.4.1 | |
with: | |
node-version-file: '.node-version' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'pnpm' | |
- name: Installing dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Tests | |
run: pnpm test-ci | |
- name: Generating coverage badges | |
uses: ./ | |
- name: Bump package version | |
id: bumping-version | |
uses: jpb06/bump-package@v2.5.10 | |
with: | |
major-keywords: BREAKING CHANGE | |
minor-keywords: feat,minor | |
patch-keywords: fix,chore | |
should-default-to-patch: true |