deprecation notice (#61) #75
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: Generate badges on custom branch | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
generate-badges-on-custom-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.11.0 | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2.2.4 | |
with: | |
version: latest | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'pnpm' | |
- name: Installing dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Delete remote badges branch | |
run: git push origin --delete badges | |
- name: Create badges branch | |
run: git checkout -b badges | |
- name: Tests | |
run: pnpm test-ci | |
- name: Generating coverage badges | |
uses: ./ | |
with: | |
branches: '*' | |
target-branch: badges | |
- name: Push badges branch | |
run: git push origin badges |