Skip to content

Commit

Permalink
chore:
Browse files Browse the repository at this point in the history
  • Loading branch information
KouSum committed Mar 1, 2024
1 parent e7e4170 commit 8391e60
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/node.js2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- run: npm install pnpm -g
- run: pnpm install
- run: pnpm build:lib
# - run: pnpm build-storybook:vite
- run: pnpm build:mjs
- run: pnpm docs:build
- name: Setup Pages
uses: actions/configure-pages@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
registry-url: 'https://registry.npmjs.org'

- name: Run install pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
registry-url: 'https://registry.npmjs.org'

- name: Run install pnpm
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@kousum/semi-icons-vue": "./packages/semi-icons-vue",
"@kousum/semi-ui-vue": "./packages/semi-ui-vue",
"@kousum/semi-icons-vue": "latest",
"@kousum/semi-ui-vue": "latest",
"vue-inline-svg": "^2.1.3",
"@storybook/addon-essentials": "7.1.1",
"@storybook/addon-interactions": "7.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test('CalenderDemo qwe', async () => {
expect(CalenderDemo).toBeTruthy()
const wrapper0 = mount(CalenderDemo, {});
const profileLink0 = wrapper0.findAll('.semi-calendar-month-date');
expect(profileLink0[1].text()).toEqual('29');
expect(typeof (profileLink0[1].text() || 0)).toEqual('string');
})

test('EventDemo qwe', async () => {
Expand Down

0 comments on commit 8391e60

Please sign in to comment.