Skip to content

Commit

Permalink
Merge pull request #39 from aleleba/PR-314156
Browse files Browse the repository at this point in the history
PR-314156: updating packages.
  • Loading branch information
aleleba authored Nov 20, 2023
2 parents d46f7cd + b2900d6 commit 7e1457c
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 57 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:

# Jobs that run as part of the workflow
jobs:
# Job to run tests
test:
# Job to run unit tests
unit-front-end-testing:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -29,8 +29,8 @@ jobs:
- run: npm ci
- run: npm test

# Job to run Cypress tests
cypress-run:
# Job to run Components Cypress tests
cypress-components-testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -51,7 +51,7 @@ jobs:
# Job to build the package
test-build-package:
if: github.ref != 'refs/heads/master'
needs: [ test, cypress-run ]
needs: [ unit-front-end-testing, cypress-components-testing ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -65,7 +65,7 @@ jobs:
# Job to publish the package to npm
publish-npm:
if: github.ref == 'refs/heads/master'
needs: [ test, cypress-run ]
needs: [ unit-front-end-testing, cypress-components-testing ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
90 changes: 45 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aleleba/create-react-component-library",
"version": "1.2.16",
"version": "1.2.17",
"description": "A starter kit for create a React component Library with storybook",
"bin": "./bin/cli.js",
"main": "dist/index.js",
Expand Down Expand Up @@ -53,20 +53,20 @@
"@storybook/react-webpack5": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/node": "^20.9.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/webpack": "^5.28.5",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cypress": "^13.5.0",
"cypress": "^13.5.1",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"eslint-webpack-plugin": "^4.0.1",
Expand All @@ -86,7 +86,7 @@
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"typescript": "^5.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
Expand Down

0 comments on commit 7e1457c

Please sign in to comment.