Skip to content

Commit

Permalink
join react-client with ts-client
Browse files Browse the repository at this point in the history
join react-client with ts-client
  • Loading branch information
mironiasty authored Jun 27, 2024
2 parents e71e738 + c27c81e commit 5023030
Show file tree
Hide file tree
Showing 165 changed files with 11,567 additions and 12,360 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
50 changes: 8 additions & 42 deletions .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,50 +26,16 @@ jobs:
cache: 'npm'

- name: Install dependencies ⬇️
run: npm ci

- name: Check formatting 🎨
run: npm run format:check

- name: Run linter 👮
run: npm run lint:check

run: yarn

- name: Build 📦
run: npm run build

- name: Docs 📚
run: npm run docs

- name: Test 🚀
run: npm run test

build_and_test_examples:
name: Build and test examples
runs-on: ubuntu-latest
- name: Run types 👮
run: yarn tsc

strategy:
matrix:
node-version: [18.x]
root_folder: [examples/simple-app, examples/minimal]

defaults:
run:
working-directory: ${{ matrix.root_folder }}

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }} 🛎️
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies lib ⬇️
run: npm ci
working-directory: .

- name: Install dependencies ⬇️
run: npm ci
- name: Check formatting 🎨
run: yarn format:check

- name: Build 📦
run: npm run build
- name: Run linter 👮
run: yarn lint:check
52 changes: 0 additions & 52 deletions .github/workflows/static.yml

This file was deleted.

37 changes: 10 additions & 27 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,37 +1,20 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

node_modules
dist
dist-ssr
docs
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
# IntelliJ
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.iml

# Playwright
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/

/coverage/

# TS incremental build
.tsbuildinfo
# MacOS
.DS_Store
894 changes: 894 additions & 0 deletions .yarn/releases/yarn-4.3.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.3.0.cjs
Loading

0 comments on commit 5023030

Please sign in to comment.