-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from ammont82/new-workflow-actions
Add Github workflow actions
- Loading branch information
Showing
4 changed files
with
119 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Pull request | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- ready_for_review | ||
branches: | ||
- main | ||
- releases/* | ||
|
||
env: | ||
NODE_OPTIONS: '--max-old-space-size=8192' | ||
jobs: | ||
preflight-check: | ||
# Prevents running the workflow when a PR is marked as draft. | ||
runs-on: ubuntu-latest | ||
outputs: | ||
skip: ${{ steps.check.outputs.skip }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Check if PR is draft | ||
id: check | ||
run: | | ||
if [[ "${{ github.event.pull_request.draft }}" == "true" ]]; then | ||
skip=true | ||
else | ||
skip=false | ||
fi | ||
echo "skip=${skip}" >> $GITHUB_OUTPUT | ||
echo "skip=${skip}" | ||
lint-and-test: | ||
needs: preflight-check | ||
if: needs.preflight-check.outputs.skip == 'false' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ vars.NODEJS_VERSION }} | ||
- run: npm install --immutable | ||
- run: npm run lint | ||
- run: npm run test --passWithNoTests | ||
build: | ||
needs: preflight-check | ||
if: needs.preflight-check.outputs.skip == 'false' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ vars.NODEJS_VERSION }} | ||
- run: npm install --immutable | ||
- run: npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Push to main or release tag | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- 'v*' | ||
|
||
env: | ||
QUAY_ORG: quay.io/edge-infrastructure | ||
QUAY_REPO: assisted-installer-ui | ||
|
||
jobs: | ||
preflight-check: | ||
# Prevents running the workflow when a brand-new tag points to the same commit as the main branch | ||
runs-on: ubuntu-latest | ||
outputs: | ||
skip: ${{ steps.check.outputs.skip }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Check if a tag points to the same commit as the main branch | ||
id: check | ||
run: | | ||
if [[ "${GITHUB_REF_TYPE}" == "tag" ]] && [[ "${GITHUB_SHA}" == "$(git rev-parse origin/main)" ]]; then | ||
skip=true | ||
else | ||
skip=false | ||
fi | ||
echo "skip=${skip}" >> $GITHUB_OUTPUT | ||
echo "skip=${skip}" | ||
lint-and-test: | ||
needs: preflight-check | ||
if: needs.preflight-check.outputs.skip == 'false' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ vars.NODEJS_VERSION }} | ||
- run: npm install --immutable | ||
- run: npm run lint | ||
- run: npm run test --passWithNoTests | ||
build: | ||
needs: preflight-check | ||
if: needs.preflight-check.outputs.skip == 'false' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ vars.NODEJS_VERSION }} | ||
- run: npm install --immutable | ||
- run: npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
import React from 'react'; | ||
import { render } from 'react-dom'; | ||
import { createRoot } from 'react-dom/client'; | ||
import RootApp from './components/RootApp'; | ||
|
||
function bootstrap() { | ||
const rootElement = document.getElementById('root'); | ||
render(React.createElement(RootApp), rootElement, () => | ||
rootElement?.setAttribute('data-ouia-safe', 'true'), | ||
); | ||
const root = createRoot(document.getElementById('root') as HTMLElement); | ||
root.render(React.createElement(RootApp)); | ||
} | ||
|
||
bootstrap(); |