fix: Components as props and fields #50
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: test-core | |
on: | |
push: | |
paths: | |
- 'packages/core/**' | |
workflow_dispatch: | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- run: npm ci | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
working-directory: packages/core | |
component: true | |
# we already have run npm ci before in the base directory, | |
# which should have installed and built everything correctly | |
install-command: npm install |