Skip to content

Commit

Permalink
Merge branch 'main' of github.com:kacesensitive/node-osquery
Browse files Browse the repository at this point in the history
  • Loading branch information
Kc committed Jul 26, 2023
2 parents 078017a + 042e340 commit d3da557
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/main.yml
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

0 comments on commit d3da557

Please sign in to comment.