Skip to content

Commit

Permalink
fix(fields): restore DatePicker calendar as body modal
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Dec 19, 2022
1 parent d32d48e commit ce2f621
Show file tree
Hide file tree
Showing 38 changed files with 72,559 additions and 81 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module.exports = {
'/.storybook/main.js',
'/config/',
'/dist/',
'/example/',
'/scripts/',
'/storybook-static/',
'.eslintrc.js',
Expand Down
28 changes: 24 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,38 @@ jobs:
- name: Upload coverage
run: yarn codecov

build:
name: Build
test_e2e:
name: E2E Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
if: ${{ always() }}
id: cache
uses: actions/cache@v3
# https://playwright.dev/docs/ci#directories-to-cache
with:
path: ~/.cache/ms-playwright
key: ${{ hashFiles('yarn.lock') }}
- name: Setup
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18
- name: Install
run: yarn
- name: Build
run: yarn build
- name: Setup tests
run: |
yarn playwright install --with-deps firefox
sh ./scripts/e2e/setup.sh &
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:4000)" != "200" ]]; do sleep 5; done'
- name: Test
run: yarn test:e2e
- name: Archive failed tests trace
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: test-results
path: |
./test-results
20 changes: 13 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ dist
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# .yarn/cache
# .yarn/unplugged
# .yarn/build-state.yml
# .yarn/install-state.gz
# .pnp.*

### Node Patch ###
# Serverless Webpack directories
Expand All @@ -143,6 +143,14 @@ dist
################################################################################
# Custom

# Playright
/playwright/.cache/
/playwright-report/
/test-results/

# Storybook
/storybook-static/

# Yarn with Zero-Installs
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.yarn/*
Expand All @@ -152,5 +160,3 @@ dist
!.yarn/releases
!.yarn/sdks
!.yarn/versions

/storybook-static
43,703 changes: 43,703 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit ce2f621

Please sign in to comment.