-
-
Notifications
You must be signed in to change notification settings - Fork 17
Bugfix: console errors on unmount #88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6273dd7
4884bb2
ee91220
90e3025
fa4e6b6
b84fbdf
7cb037b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [master, main] | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| test-and-lint: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | ||
| with: | ||
| node-version: "22" | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | ||
| with: | ||
| python-version: "3.10" | ||
|
|
||
| # ubuntu-latest ships Google Chrome and a matching ChromeDriver; expose | ||
| # the driver on PATH so selenium (pinned <=4.2.0, no Selenium Manager) | ||
| # can find it. | ||
| - name: Put ChromeDriver on PATH | ||
| run: echo "$CHROMEWEBDRIVER" >> "$GITHUB_PATH" | ||
|
|
||
| - name: Install Python dependencies | ||
| run: pip install -r requirements-dev.txt | ||
|
|
||
| - name: Lint with flake8 | ||
| run: npm run lint | ||
|
|
||
| - name: Build package | ||
| run: | | ||
| npm install | ||
| npm run build | ||
|
|
||
| - name: Run tests | ||
| run: npm run test -- --headless | ||
|
|
||
| - name: Run tests using React 18 | ||
| run: npm run test -- --headless | ||
| env: | ||
| REACT_VERSION: 18.2.0 |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.