Skip to content

Bugfix/build fix #300

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

Merged
merged 10 commits into from
Feb 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Build docs
run: npm run build:documentation
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: docz-dist
path: .docz/dist
Expand All @@ -30,7 +30,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: docz-dist
path: public
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
if: github.ref != 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Run linter
Expand All @@ -32,12 +32,12 @@ jobs:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Run build
Expand All @@ -52,7 +52,7 @@ jobs:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Merge main -> next
Expand Down
8 changes: 4 additions & 4 deletions fixtures/typescript-build/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ const TestHelperText: React.FC = () => (
<HelperText variant="danger" />
<HelperText inverted />
<HelperText inverted={false} />
<HelperText weak />
<HelperText weak={false} />
<HelperText secondary />
<HelperText secondary={false} />
<HelperText margin={1} />
<HelperText fontSize={1} />
<HelperText textAlign="center" />
Expand Down Expand Up @@ -392,8 +392,8 @@ const TestText: React.FC = () => (
<Text fontWeight="bold" />
<Text inverted />
<Text inverted={false} />
<Text weak />
<Text weak={false} />
<Text secondary />
<Text secondary={false} />
<Text margin={1} />
<Text fontSize={1} />
<Text fontSize="large" />
Expand Down
Loading