Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
soyuka committed Oct 29, 2024
1 parent 8b8ae6c commit d536c49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
node-version: 'current'
-
name: Enable corepack
run: corepack enable
run: |
corepack install yarn@1
corepack enable
-
name: Install dependencies
run: yarn install
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ jobs:
*.cache-to=type=gha,scope=${{github.ref}},mode=max
-
name: Start services
run: |
docker compose -f compose.yaml -f compose.ci.yaml build --pull
docker compose -f compose.yaml -f compose.ci.yaml up --wait --no-build
run: docker compose -f compose.yaml -f compose.ci.yaml up --wait --no-build
-
name: Create test database
run: docker compose exec -T php bin/console -e test doctrine:database:create
Expand Down
1 change: 1 addition & 0 deletions src/useOnSubmit.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const onSubmitProps = {
fields: API_FIELDS_DATA,
resource: 'books',
schemaAnalyzer: schemaAnalyzer(),
children: []
};

jest.mock('./getIdentifierValue.js');
Expand Down

0 comments on commit d536c49

Please sign in to comment.