chore: bumping deps and node version (#60) #58
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/[email protected] | |
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/[email protected] | |
with: | |
version: latest | |
- name: Setup node | |
uses: actions/[email protected] | |
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/[email protected] | |
with: | |
major-keywords: BREAKING CHANGE | |
minor-keywords: feat,minor | |
patch-keywords: fix,chore | |
should-default-to-patch: true |