Skip to content

chore(proto): Publish to buf.build #11

chore(proto): Publish to buf.build

chore(proto): Publish to buf.build #11

Workflow file for this run

name: cedar
on:
pull_request:
paths:
- ".github/workflows/cedar.yaml"
- "packages/cedar/**"
# Prevent duplicate runs due to Graphite
# https://graphite.dev/docs/troubleshooting#why-are-my-actions-running-twice
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/main' && github.sha || ''}}
cancel-in-progress: true
defaults:
run:
shell: bash
working-directory: packages/cedar
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Git Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 4.1.7
with:
submodules: true
- name: Setup Dart
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 # main
- name: Get Packages
run: dart pub get
- name: Test
run: dart test --fail-fast
- name: Test (dart2js)
run: dart test -p chrome --fail-fast
- name: Test (dart2wasm)
run: dart test -p chrome -c dart2wasm --fail-fast