ci: Update per Q3 audit findings #1447
Workflow file for this run
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: System Contract Dapp Playground | |
on: | |
pull_request: | |
branches: [main, release/**] | |
push: | |
branches: [main, release/**] | |
tags: [v*] | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
abi-regression: | |
name: ABI prerequisite check | |
uses: ./.github/workflows/dapp-playground-workflow.yml | |
with: | |
jobTitle: 'abi regression test' | |
jobCommand: 'npm run prerequisite-check' | |
production-build: | |
name: Create production-ready build | |
uses: ./.github/workflows/dapp-playground-workflow.yml | |
with: | |
jobTitle: 'production build' | |
jobCommand: 'npm run build' | |
unit-test: | |
name: Unit tests | |
uses: ./.github/workflows/dapp-playground-workflow.yml | |
with: | |
jobTitle: 'unit test' | |
jobCommand: 'npm run test' |