Skip to content

Commit b6fa055

Browse files
ErioldDaniel Montoya
andauthored
feat(node): se actualiza uikit a node 14.21.3 (#550)
Co-authored-by: Daniel Montoya <daniel.montoya@eclass.cl>
1 parent 68f4c65 commit b6fa055

File tree

7 files changed

+28600
-29
lines changed

7 files changed

+28600
-29
lines changed

.github/workflows/nodejs.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,22 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node: ['12', '14']
10+
node: [14.21.3]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
1515
node-version: ${{ matrix.node }}
1616
cache: 'npm'
17-
- uses: webfactory/ssh-agent@v0.5.4
17+
- uses: webfactory/ssh-agent@v0.7.0
1818
with:
1919
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
2020
- name: Add Know Hosts
2121
run: |
2222
ssh-keyscan -t rsa gitlab.com >> ~/.ssh/known_hosts
2323
shell: bash
24+
- name: Install dependencies and regenerate package-lock.json
25+
run: npm install
2426
- name: Clean install on CI
2527
run: npm ci
2628
- name: Linter code check
@@ -35,9 +37,9 @@ jobs:
3537
- uses: actions/checkout@v3
3638
- uses: actions/setup-node@v3
3739
with:
38-
node-version: '12.22.6'
40+
node-version: 14.21.3
3941
cache: 'npm'
40-
- uses: webfactory/ssh-agent@v0.5.4
42+
- uses: webfactory/ssh-agent@v0.7.0
4143
with:
4244
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
4345
- name: Add Know Hosts
@@ -49,7 +51,7 @@ jobs:
4951
- name: Build library
5052
run: npm run build
5153
- name: Release version
52-
run: npx semantic-release@17
54+
run: npx semantic-release@18
5355
env:
5456
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5557
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -61,9 +63,9 @@ jobs:
6163
- uses: actions/checkout@v3
6264
- uses: actions/setup-node@v3
6365
with:
64-
node-version: '12.22.6'
66+
node-version: 14.21.3
6567
cache: 'npm'
66-
- uses: webfactory/ssh-agent@v0.5.4
68+
- uses: webfactory/ssh-agent@v0.7.0
6769
with:
6870
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
6971
- name: Add Know Hosts

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ yarn-error.log
88
docs
99
.eslintcache
1010
tsconfig.tsbuildinfo
11-
package-lock.json

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.22.12
1+
14.21.3

.storybook/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
'@storybook/addon-essentials'
1111
],
1212
core: {
13-
builder: 'storybook-builder-vite',
13+
builder: '@storybook/builder-vite',
1414
},
1515
typescript: {
1616
check: true

0 commit comments

Comments
 (0)