Skip to content

feat: remove node-fetch (#303) #49

feat: remove node-fetch (#303)

feat: remove node-fetch (#303) #49

Workflow file for this run

name: On push to main branch
on:
push:
branches:
- main
workflow_dispatch:
inputs:
type:
description: 'Emulate a push manually: Only do this if semantic-release fails!'
required: false
default: 'nothing'
type: choice
options:
- push
- nothing
jobs:
analyze:
uses: ./.github/workflows/codeql-analysis.yml
build:
uses: ./.github/workflows/build-all-platforms.yml
release:
needs: [build]
uses: ./.github/workflows/js-test-and-release.yml
secrets: inherit
# see https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow
build_reports:
name: Build Compliance Reports
uses: ./.github/workflows/build-reports.yml
secrets: inherit
publish_reports:
name: Publish Compliance Reports
needs: [build_reports]
uses: ./.github/workflows/publish-reports.yml
secrets: inherit
with:
type: ${{ github.event.inputs.type || github.event_name }}