fix: BoundSyncFunctions
type should contain query*
, not find*
#36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '!**' | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests, lint and verify package integrity | |
run: yarn run validate | |
release: | |
permissions: | |
id-token: write # required for provenance | |
actions: write # to cancel/stop running workflows (styfle/cancel-workflow-action) | |
contents: write # to create release tags (cycjimmy/semantic-release-action) | |
issues: write # to post release that resolves an issue (cycjimmy/semantic-release-action) | |
needs: ci | |
runs-on: ubuntu-latest | |
if: | |
${{ github.repository == | |
'testing-library/react-render-stream-testing-library' && github.event_name | |
== 'push' }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install | |
- name: 🏗 Run build script | |
run: yarn build | |
- name: 🚀 Release | |
uses: cycjimmy/semantic-release-action@v4 | |
with: | |
branches: | | |
[ | |
'+([0-9])?(.{+([0-9]),x}).x', | |
'main', | |
'next', | |
'next-major', | |
{name: 'beta', prerelease: true}, | |
{name: 'alpha', prerelease: true} | |
] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |