Skip to content

chore(stepsecurity): update workflows to use custom hosted runners with built-in StepSecurity #14

chore(stepsecurity): update workflows to use custom hosted runners with built-in StepSecurity

chore(stepsecurity): update workflows to use custom hosted runners with built-in StepSecurity #14

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches: [main]
jobs:
lint_and_test:
runs-on: small-dind-spot
steps:
- name: Check out repository code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
submodules: 'recursive'
- name: Setup environment
uses: ./.github/actions/setup
- name: Run Linter
run: yarn lint
- name: Run Forge fmt
run: yarn format:check
- name: Run Unit Tests
run: yarn test
scan:
needs: lint_and_test
if: github.event_name == 'pull_request'
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1
release-sbom:
needs: lint_and_test
if: github.event_name == 'push'
uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1