Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
MicicFilip committed Aug 5, 2024
1 parent 930b57e commit 815b7eb
Show file tree
Hide file tree
Showing 19 changed files with 806 additions and 171 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/react.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: React - Install and Tests

on:
pull_request:
paths:
- 'packages/react/**'
- '!examples/**'
- '!packages/sdk/**'
- '!packages/ui/**'
- '!storybook/**'

jobs:
react:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: packages/react/
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
# TODO: Remove right before merge.
with:
ref: 'feature/github-actions'

- name: Setup Node version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
with:
node-version-file: '.nvmrc' # Root of the repository.

# TODO: NPM login instead of auth token?
- name: Authenticate with private NPM package
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Tests
run: npm run test
37 changes: 37 additions & 0 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: SDK - Install, Lint and Test

on:
pull_request:
paths:
- 'packages/sdk/**'
- '!examples/**'
- '!packages/react/**'
- '!packages/ui/**'
- '!storybook/**'

jobs:
sdk:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: packages/sdk/
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
# TODO: Remove right before merge.
with:
ref: 'feature/github-actions'

- name: Setup Node version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
with:
node-version-file: '.nvmrc' # Root of the repository.

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Lint check
run: npm run lint

- name: Tests
run: npm run test
86 changes: 86 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Storybook - Lint, Build and Deploy

on:
pull_request:
paths:
- 'storybook/**'
- '!examples/**'
- '!packages/react/**'
- '!packages/sdk/**'
- '!packages/ui/**'

jobs:
storybook:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: storybook/
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
# TODO: Remove right before merge.
with:
ref: 'feature/github-actions'

- name: Setup Node version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
with:
node-version-file: '.nvmrc' # Root of the repository.

# TODO: NPM login instead of auth token?
- name: Authenticate with private NPM package
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Lint check
run: npm run lint

- name: Build
run: npm run build-storybook

deploy:
needs: storybook

runs-on: ubuntu-22.04
defaults:
run:
working-directory: storybook/

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment.
permissions:
pages: write
id-token: write

# Deploy to the github-pages environment.
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
# - name: Archive artifact
# shell: sh
# run: |
# echo ::group::Archive artifact
# tar \
# --dereference --hard-dereference \
# --directory "storybook-static/" \
# -cvf "$RUNNER_TEMP/artifact.tar" \
# --exclude=.git \
# --exclude=.github \
# .
# echo ::endgroup::

- name: Upload artifact
id: upload-artifact
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
with:
name: storybook
path: storybook-static
retention-days: 90
if-no-files-found: error

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e
41 changes: 41 additions & 0 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: UI - Install, Lint and Test

on:
pull_request:
paths:
- 'packages/ui/**'
- '!examples/**'
- '!packages/react/**'
- '!packages/sdk/**'
- '!storybook/**'

jobs:
ui:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: packages/ui/
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
# TODO: Remove right before merge.
with:
ref: 'feature/github-actions'

- name: Setup Node version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
with:
node-version-file: '.nvmrc'

# TODO: NPM login instead of auth token?
- name: Authenticate with private NPM package
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Lint check
run: npm run lint

- name: Tests
run: npm run test
2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
"typescript": "^5.5.4"
}
}
6 changes: 3 additions & 3 deletions examples/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"typescript": "^5.2.2",
"typescript": "^5.5.4",
"vite": "^5.3.1"
}
}
Loading

0 comments on commit 815b7eb

Please sign in to comment.