-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:kacesensitive/node-osquery
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Generate badges on custom branch | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
generate-badges-on-custom-branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: pnpm/[email protected] | ||
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 |