Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

- name: Setup Node.js Environment
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'

# --- Application Checks ---
- name: Install Dependencies
- name: Install dependencies
run: npm ci

- name: 'Create .env File'
- name: 'Create .env file'
run: |
echo "${{ env.ENV_FILE }}" > .env

Expand All @@ -62,7 +62,7 @@ jobs:
run: npm run build:storybook

# --- Infrastructure Checks ---
- name: Configure AWS Credentials
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v6.0.0
with:
role-to-assume: ${{ env.AWS_ROLE_ARN }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
- name: Install dependencies
run: npm ci

- name: 'Create .env file'
run: |
echo "${{ secrets.ENV_CI }}" > .env

- name: Run ESLint with detailed output
run: |
echo "## ESLint Analysis" >> $GITHUB_STEP_SUMMARY
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

A serverless, progressive, responsive starter user interface (UI) with React at the core of the technology stack.

[![CI](https://github.com/leanstacks/react-starter-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/leanstacks/react-starter-kit/actions/workflows/ci.yml)
[![CI](https://github.com/leanstacks/react-starter/actions/workflows/ci.yml/badge.svg)](https://github.com/leanstacks/react-starter/actions/workflows/ci.yml)
 
 
[![Code Quality](https://github.com/leanstacks/react-starter/actions/workflows/code-quality.yml/badge.svg)](https://github.com/leanstacks/react-starter/actions/workflows/code-quality.yml)

## Helpful Hints

Expand Down Expand Up @@ -256,7 +259,7 @@ The resources provisioned to host the React app are:

### CI/CD Pipelines

This project uses GitHub Actions to perform DevOps automation activities such as Continuous Integration and Continous Deployment. See all project [GitHub Actions workflow runs](https://github.com/leanstacks/react-starter-kit/actions).
This project uses GitHub Actions to perform DevOps automation activities such as Continuous Integration and Continous Deployment. See all project [GitHub Actions workflow runs](https://github.com/leanstacks/react-starter/actions).

| Workflow | Trigger | Description |
| --------------------- | ------------------------------ | ------------------------------------------------------------------------------------------------------ |
Expand Down
Loading