Skip to content

Migrate from circle ci to github actions #57

Migrate from circle ci to github actions

Migrate from circle ci to github actions #57

Workflow file for this run

name: Continuous Integration
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-22.04
outputs:
sdk-versions: ${{ steps.sdk-versions.outputs.versions }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install asdf CLI
uses: asdf-vm/actions/install@v3
- name: Determine versions to update
id: sdk-versions
run: ./scripts/versions-to-update.sh @optable/web-sdk 0.19.7 >> "$GITHUB_OUTPUT"
- name: Show versions that will be updated
run: |
echo "SDK versions: ${{ steps.sdk-versions.outputs.versions }}"