Skip to content

Commit

Permalink
chore: add chromatic configuration to run test
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Dec 24, 2024
1 parent c6705a0 commit ca98fa5
Show file tree
Hide file tree
Showing 19 changed files with 2,396 additions and 375 deletions.
110 changes: 46 additions & 64 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,97 +6,79 @@ name: Build & Release
on:
push:
pull_request:
branches:
- master
branches: [master]
types: [opened, synchronize, closed]

jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --immutable --network-timeout 500000
node-version: 20.x
cache: "yarn"
- name: Install dependencies 🚀
run: yarn install --immutable
- name: Run lint
run: yarn lint

test:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node-version: [20.x]

runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --immutable --network-timeout 500000
- name: Run test
node-version: 20.x
cache: "yarn"
- name: Install dependencies 🚀
run: yarn install --immutable
- name: Run test 🔍
run: yarn test

deploy-packages:
test-storybook:
timeout-minutes: 60
runs-on: ubuntu-latest
needs: [lint, test]
if: ${{ github.event_name != 'pull_request' && (contains(github.ref, 'master') || contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc')) }}

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --immutable --network-timeout 500000
- name: Release packages
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: yarn release
- uses: actions/upload-artifact@v2
with:
name: packages
path: |
package.json
packages/*/package.json
node-version: 20.x
cache: "yarn"
- name: Install dependencies 🚀
run: yarn install --immutable
- name: Install Playwright 🚀
run: yarn playwright install
- name: Build Storybook
run: yarn storybook:build --quiet
- name: Serve Storybook and run tests 🔍
run: |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx http-server packages/storybook/.out --port 6006 --silent" \
"npx wait-on tcp:6006 && yarn storybook:test:ci"
publish-pages:
deploy-packages:
runs-on: ubuntu-latest
needs: deploy-packages
needs: [lint, test, test-storybook]
if: ${{ github.event_name != 'pull_request' && (contains(github.ref, 'master') || contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc')) }}

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
node-version: 20.x
cache: "yarn"
- name: Install dependencies 🚀
run: yarn install --immutable
- name: Release packages
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn publish:storybook
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: yarn release
28 changes: 28 additions & 0 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .github/workflows/chromatic.yml

name: "Chromatic"

on:
push:
pull_request:
branches: [production]
types: [opened, synchronize, closed]

jobs:
chromatic:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install dependencies
run: yarn install --immutable

- name: Run Chromatic
uses: chromaui/action@latest
with:
workingDir: packages/storybook
# ⚠️ Make sure to configure a `CHROMATIC_PROJECT_TOKEN` repository secret
projectToken: ${{ secrets.CHROMATIC_TOKEN }}
79 changes: 56 additions & 23 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,65 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Website
name: Deploy website

on:
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
# using the `master` branch as the default branch.
push:
branches: [master]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
publish-pages:
runs-on: ubuntu-latest
needs: deploy-packages
if: ${{ github.event_name != 'pull_request' && (contains(github.ref, 'master') || contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc')) }}
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

strategy:
matrix:
node-version: [18.x]
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: pages
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- name: Checkout
uses: actions/checkout@v4
with:
node-version: ${{ matrix.node-version }}
fetch-depth: 0 # Not needed if lastUpdated is not enabled
# - uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Release packages
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn publish:storybook
run: yarn install
- name: Build with Storybook
run: |
yarn storybook:build
touch packages/storybook/.out/.nojekyll
echo "formio.tsed.dev" > packages/storybook/.out/CNAME
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: packages/storybook/.out

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
"postinstall": "lerna run build --stream",
"configure": "monorepo ci configure",
"test": "lerna run test --stream",
"test:e2e": "lerna run test:e2e",
"test:coverage:update": "lerna run test:coverage:update --stream",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint:fix --stream",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"build": "monorepo build --verbose",
"publish": "monorepo publish --dry-run",
"start": "lerna run start --stream --parallel",
"start:storybook": "lerna run start:storybook --stream",
"build:storybook": "yarn build:tailwind && lerna run build:storybook --stream",
"build:tailwind": "lerna run build:tailwind --stream --scope @tsed/tailwind",
"publish:storybook": "yarn build:storybook && monorepo publish ghpages",
"storybook:start": "lerna run storybook:start --stream",
"storybook:build": "yarn tailwind:build && lerna run storybook:build --stream",
"tailwind:build": "lerna run tailwind:build --stream --scope @tsed/tailwind",
"storybook:test": "yarn tailwind:build && lerna run storybook:test --stream",
"storybook:test:ci": "lerna run storybook:test:ci --stream",
"release": "semantic-release",
"prepare": "is-ci || husky install"
},
Expand Down
4 changes: 3 additions & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@
"devDependencies": {
"@tsed/tailwind": "2.3.1",
"@tsed/yarn-workspaces": "1.19.3"
}
},
"dependencies": {},
"peerDependencies": {}
}
9 changes: 8 additions & 1 deletion packages/react-formio-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
}
},
"scripts": {
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "yarn lint --fix",
Expand Down Expand Up @@ -89,5 +95,6 @@
"tooltip.js": {
"optional": false
}
}
},
"dependencies": {}
}
6 changes: 3 additions & 3 deletions packages/react-formio-container/src/views/formAccess.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import React from "react";
import { useForm } from "../hooks/useForm.hook";

export function FormAccessView(props: ReturnType<typeof useForm>) {
const Component = props.FormAccessComponent || FormAccess;
const { form, auth, formType, saveForm, i18n } = props;
const Component = (props.FormAccessComponent || FormAccess) as typeof FormAccess;
const { form, auth, saveForm, i18n } = props;

const roles = Object.values(auth.roles).map((role) => {
return {
Expand All @@ -17,7 +17,7 @@ export function FormAccessView(props: ReturnType<typeof useForm>) {

return (
<div className={"p-3 pb-1"}>
<Component {...props} type={formType} form={form} roles={roles} onSubmit={saveForm} options={{ i18n }} />
<Component {...props} form={form} roles={roles} onSubmit={saveForm} options={{ i18n }} />
</div>
);
}
6 changes: 6 additions & 0 deletions packages/react-formio-stores/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
"module": "dist/index.modern.js",
"source": "src/index.ts",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
}
},
"scripts": {
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "yarn lint --fix",
Expand Down
13 changes: 8 additions & 5 deletions packages/react-formio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"name": "@tsed/react-formio",
"version": "2.3.1",
"description": "Provide a react formio wrapper. Written in TypeScript.",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"main": "./dist/index.js",
"module": "./dist/index.modern.js",
"exports": {
"import": "dist/index.modern.js",
"require": "dist/index.js"
".": {
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
}
},
"source": "src/index.ts",
"license": "MIT",
Expand Down Expand Up @@ -37,6 +39,7 @@
},
"devDependencies": {
"@tsed/tailwind": "workspace:*",
"@tsed/tailwind-formio": "workspace:*"
"@tsed/tailwind-formio": "workspace:*",
"microbundle": "0.13.0"
}
}
Loading

0 comments on commit ca98fa5

Please sign in to comment.