Skip to content

test: added integration tests #6

test: added integration tests

test: added integration tests #6

Workflow file for this run

name: Pull request
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
verify:
name: Verify
uses: ./.github/workflows/verify.yml
secrets: inherit
# bench:
# name: Benchmark
# runs-on: ubuntu-latest
# timeout-minutes: 5
# steps:
# - name: Clone repository
# uses: actions/checkout@v3
# - name: Install dependencies
# uses: ./.github/actions/install-dependencies
# - name: Run benchmarks
# run: pnpm bench
size:
name: Size
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Report build size
uses: preactjs/compressed-size-action@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}