Skip to content

support read/write only on references #39

support read/write only on references

support read/write only on references #39

Workflow file for this run

name: Production
on:
push:
branches: main
jobs:
build:
name: Build
uses: flexbase-eng/.github/.github/workflows/build.typescript.yml@main
secrets: inherit
with:
node_version: '20'
unit-test:
name: Run unit tests
needs: build
uses: flexbase-eng/.github/.github/workflows/test.unit.typescript.yml@main
secrets: inherit
with:
node_version: '20'
coverage:
name: Compute test coverage
needs: [unit-test]
uses: flexbase-eng/.github/.github/workflows/coverage.sonarcloud.yml@main
secrets: inherit
package:
name: Package artifacts
needs: build
uses: flexbase-eng/.github/.github/workflows/package.typescript.yml@main
secrets: inherit
with:
version_command: ''
packr_command: 'packr'
build_artifact_folder: 'output'
deploy:
needs: [package, coverage]
uses: flexbase-eng/.github/.github/workflows/deploy.npm.yml@main
secrets: inherit
with:
node_version: '20'
build_artifact_folder: ''
github-release:
name: Update github release
needs: deploy
uses: flexbase-eng/.github/.github/workflows/notify.github.release.yml@main
secrets: inherit