Skip to content

Migrate from circle ci to github actions #41

Migrate from circle ci to github actions

Migrate from circle ci to github actions #41

Workflow file for this run

name: Format, lint, test and build
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
workflow_dispatch:
jobs:
tests-prettier:
uses: ./.github/workflows/reusable-lint-test.yml
build:
needs: [tests-prettier]
uses: ./.github/workflows/reusable-build.yml
define-gcs-versions-to-update:
runs-on: ubuntu-latest
outputs:
sdk-versions: ${{ steps.sdk-versions.outputs.versions }}
steps:
- name: Define versions to update
id: sdk-versions
run: ./scripts/define-sdk-versions.sh v0.0.0 >> "$GITHUB_OUTPUT"
- name: show output
run: echo ${{ steps.sdk-versions.outputs.versions }}