Skip to content

Effect SDK V2.0

Effect SDK V2.0 #5

Workflow file for this run

name: Pull request
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
verify:
name: Verify
uses: ./.github/workflows/verify.yml

Check failure on line 12 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull-request.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pull-request.yml" -> "./.github/workflows/verify.yml" : every step must define a `uses` or `run` key
secrets: inherit
size:
name: Size
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Report bundle size
uses: andresz1/size-limit-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
package_manager: bun