Merge pull request #90 from aleleba/PR-335298

PR-335298: updating packages and change the two workflows of github actions to one main workflow.
This commit is contained in:
Alejandro Lembke Barrientos 2023-11-10 11:09:50 -06:00 committed by GitHub
commit 8f3474a1cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 695 additions and 692 deletions

View File

@ -1,9 +1,17 @@
name: Testing package
# This file contains the main workflow for the create-react-ssr project. It defines the steps and actions to be taken when the workflow is triggered.
# Name of the workflow
name: Main Workflow
# Define the events that trigger the workflow
on:
push:
branches: [ master ]
pull_request:
branches: ['*']
# Define the jobs that run as part of the workflow
jobs:
# Job to run tests
test:
runs-on: ubuntu-latest
strategy:
@ -20,6 +28,8 @@ jobs:
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm test
# Job to run Cypress tests
cypress-run:
runs-on: ubuntu-latest
env:
@ -34,6 +44,8 @@ jobs:
with:
build: npm run build
start: npm start
# Job to run Cypress component tests
cypress-run-component:
runs-on: ubuntu-latest
steps:
@ -45,7 +57,10 @@ jobs:
uses: cypress-io/github-action@v5 # use the explicit version number
with:
component: true
# Job to build the package
test-build-package:
if: github.ref != 'refs/heads/master'
needs: [ test, cypress-run, cypress-run-component ]
runs-on: ubuntu-latest
steps:
@ -55,4 +70,20 @@ jobs:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm run build
# Job to publish the package to NPM
publish-npm:
if: github.ref == 'refs/heads/master'
needs: [ test, cypress-run, cypress-run-component ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

View File

@ -1,54 +0,0 @@
name: NPM testing and publish package
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm test
cypress-run:
runs-on: ubuntu-latest
env:
PORT: 3000
steps:
- name: Checkout
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v5 # use the explicit version number
with:
build: npm run build
start: npm start
cypress-run-component:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v5 # use the explicit version number
with:
component: true
publish-npm:
needs: [ build, cypress-run, cypress-run-component ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

View File

@ -10,7 +10,7 @@ React (Render Library) | 18.2.0
Redux (Global State Management) | 4.2.1
React Router DOM (Routing) | 6.18.0
Jest (Testing) | 29.7.0
Cypress (E2E Testing) | 13.4.0
Cypress (E2E Testing) | 13.5.0
Typescript | 5.2.2
## Setup

1284
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@aleleba/create-react-ssr",
"version": "3.9.13",
"version": "3.9.14",
"description": "Starter Kit of server side render of react",
"bin": "./bin/cli.js",
"main": "src/server/index",
@ -64,10 +64,10 @@
"workbox-streams": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@redux-devtools/extension": "^3.2.6",
"@testing-library/jest-dom": "^6.1.4",
@ -89,7 +89,7 @@
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cypress": "^13.4.0",
"cypress": "^13.5.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-webpack-plugin": "^4.0.1",