Skip to content

Commit aac57d6

Browse files
authored
ci: make build pass (#252)
1 parent c549c36 commit aac57d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
- uses: actions/checkout@master
1313
- uses: actions/setup-node@v1
1414
with:
15-
node-version: '13.x'
15+
node-version: '18.x'
1616
- run: yarn install
1717
- run: yarn build
1818
- run: yarn test
1919
# - run: yarn coverage
2020
- run: npx semantic-release
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
23+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

tests/index.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Table, { Header, Skeleton, Cell } from '../src'
88

99
const skeleton = (v: string) => <Skeleton>{v}</Skeleton>
1010
const header = (v: string) => <Header>{v}</Header>
11-
const cell = (v: string) => <Cell>{v}</Cell>
11+
const cell = (v: string) => <Cell column={0}>{v}</Cell>
1212

1313
const Custom = ({ children }: React.PropsWithChildren<{}>) => (
1414
<Text italic color="red">

0 commit comments

Comments
 (0)