create-react-ssr/.github/workflows/main-workflow.yml

95 lines
2.7 KiB
YAML
Raw Permalink Normal View History

# 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:
2023-11-20 11:13:08 -06:00
# Job to run unit tests
unit-front-end-testing:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
registry-url: https://registry.npmjs.org/
2024-11-13 09:09:14 -06:00
- run: npm ci
- run: npm test
2023-11-20 11:13:08 -06:00
# Job to run Cypress component tests
cypress-components-testing:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Install dependencies
2024-11-13 09:09:14 -06:00
run: npm ci
- name: Cypress run
uses: cypress-io/github-action@v6 # use the explicit version number
with:
2023-11-20 11:13:08 -06:00
component: true
install: false
2023-11-20 11:13:08 -06:00
# Job to run Cypress End to End tests
end-to-end-testing:
runs-on: ubuntu-latest
2023-11-20 11:13:08 -06:00
env:
PORT: 3000
steps:
- name: Checkout
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Install dependencies
2024-11-13 09:09:14 -06:00
run: npm ci
- name: Cypress run
uses: cypress-io/github-action@v6 # use the explicit version number
with:
install: false
2023-11-20 11:13:08 -06:00
build: npm run build
start: npm start
# Job to build the package
test-build-package:
if: github.ref != 'refs/heads/master'
2023-11-20 11:13:08 -06:00
needs: [ unit-front-end-testing, cypress-components-testing, end-to-end-testing ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
2024-11-13 09:09:14 -06:00
- run: npm ci
- run: npm run build
# Job to publish the package to NPM
publish-npm:
if: github.ref == 'refs/heads/master'
2023-11-20 11:13:08 -06:00
needs: [ unit-front-end-testing, cypress-components-testing, end-to-end-testing ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
2024-11-13 09:09:14 -06:00
- run: npm ci
- run: npm publish --access=public
env:
NPM_PERSONAL_TOKEN: ${{secrets.npm_token}}