Skip to content

Commit

Permalink
Merge branch 'main' into feature/table-add-required-sort
Browse files Browse the repository at this point in the history
  • Loading branch information
40oleg authored Sep 29, 2024
2 parents 1ef1481 + 8cce7ee commit 552101d
Show file tree
Hide file tree
Showing 500 changed files with 6,174 additions and 3,611 deletions.
4 changes: 3 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"**/*.less",
"**/dist/**",
"**/cspell/**",
"**/.vscode/**",
"**/assets/**",
"**/node_modules/**",
"*.{log,svg,snap,png,ogv,yml}",
Expand All @@ -28,7 +29,8 @@
"svgs",
"contentalign",
"inputpassword",
"inputcopy"
"inputcopy",
"docsearch"
],
"ignoreRegExpList": ["\\(https?://.*?\\)", "\\/{1}.+\\/{1}", "\\%2F.+", "\\%2C.+", "\\ɵ.+", "\\ыва.+"],
"overrides": [
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/auto-add-version-label.yml

This file was deleted.

55 changes: 0 additions & 55 deletions .github/workflows/auto-approve.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/auto-author-assign.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/auto-dependency-review.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/auto-label.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/auto-remove-label.yml

This file was deleted.

9 changes: 5 additions & 4 deletions .github/workflows/auto-update-icons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
if: ${{ !contains(github.head_ref , 'release/') }}
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- name: Lucide icons
run: |
npx nx prebuild icons
Expand All @@ -29,7 +29,8 @@ jobs:
npx eslint ./projects/demo/used-icons.ts --fix || echo "no file matching"
npx prettier ./projects/demo/used-icons.ts --write || echo "no file matching"
npx prettier ./projects/cdk/constants/used-icons.ts --write || echo "no file matching"
- uses: taiga-family/ci/actions/auto/[email protected]
- uses: taiga-family/ci/actions/auto/[email protected]
if: env.SUPPORT_AUTO_PUSH
with:
message: icons have changed
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
16 changes: 7 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Build packages
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- run: npm run run-many:build:libs
- run: npx ts-node ./scripts/check-dist.ts

Expand All @@ -21,13 +21,11 @@ jobs:
name: Prerender of demo application
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- run: npx nx prerender demo
- run: tree ${{ env.DIST }} -P '*.html'
- name: Bundle size tracking
run: npx --yes bundlemon --config .github/.bundlemonrc.json
- run: npx --yes bundlemon --config .github/.bundlemonrc.json
continue-on-error: true
env:
CI_COMMIT_SHA: ${{ env.CI_COMMIT_SHA }}
Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
env:
IS_RRE_RELEASE_MODE: ${{ contains(github.event.inputs.mode, 'prerelease') }}
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: taiga-family/ci/actions/setup/config/git@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- uses: taiga-family/ci/actions/setup/config/git@v1.87.5
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/delete-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ name: Close PR delete firebase channel
on:
pull_request:
types: [closed]

jobs:
delete_firebase_channel:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: w9jds/[email protected]
- uses: actions/[email protected]
- uses: w9jds/[email protected]
continue-on-error: true
with:
args: hosting:channel:delete pr${{ github.event.number }}-${{ github.head_ref }} --force
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
if: ${{ !contains(github.event.workflow_run.head_branch, 'release/') }}
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5

- name: Prepare demo before deploy from snapshots
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
name: Firebase
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- run: npx nx build demo
- name: Debug output
run: tree dist/demo/browser -P '*.html'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
name: Component testing result
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- run: npx tsc -p projects/demo-cypress/tsconfig.json
- run: npx nx component-test demo-cypress

Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/e2e-playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
name: Build demo
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: actions/checkout@v4.2.0
with:
fetch-depth: 10
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/run/rebase@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/run/rebase@v1.87.5
continue-on-error: true
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.87.5

- name: Building demo-app of git-branch without cache
run: npx nx build demo
Expand All @@ -36,18 +36,18 @@ jobs:
shardTotal: [9]
name: playwright / (${{ matrix.shardIndex }} of ${{ matrix.shardTotal }})
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: taiga-family/ci/actions/setup/playwright@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- uses: taiga-family/ci/actions/setup/playwright@v1.87.5

- name: Download cache / ${{ env.CACHE_DIST_KEY }}
uses: actions/cache/[email protected]
with:
path: dist/demo
key: ${{ env.CACHE_DIST_KEY }}

- uses: taiga-family/ci/actions/run/serve@v1.73.1
- uses: taiga-family/ci/actions/run/serve@v1.87.5
with:
port: ${{ env.NG_SERVER_PORT }}
directory: ${{ env.DIST }}
Expand All @@ -56,12 +56,12 @@ jobs:
- name: Run screenshot tests on ${{ env.DIST }}
run: npx nx e2e demo-playwright -- --update-snapshots --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}

- uses: taiga-family/ci/actions/run/clone@v1.73.1
- uses: taiga-family/ci/actions/run/clone@v1.87.5
with:
branch: snapshots/demo/next/${{ github.base_ref }}
destination: ${{ env.DIST_NEXT }}

- uses: taiga-family/ci/actions/run/serve@v1.73.1
- uses: taiga-family/ci/actions/run/serve@v1.87.5
with:
port: ${{ env.NG_SERVER_PORT }}
directory: ${{ env.DIST_NEXT }}
Expand Down Expand Up @@ -115,8 +115,8 @@ jobs:
needs: [playwright]
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5

- name: Download artifacts / ${{ env.PLAYWRIGHT_SNAPSHOTS_ARTIFACTS_KEY }}
continue-on-error: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
if: ${{ !contains(github.head_ref, 'release/') }}
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.73.1
- uses: taiga-family/ci/actions/setup/variables@v1.73.1
- uses: taiga-family/ci/actions/setup/node@v1.73.1
- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.87.5
- uses: taiga-family/ci/actions/setup/node@v1.87.5
- run: npm run typecheck
- run: npm run cspell -- --no-progress
- run: |
Expand All @@ -25,7 +25,7 @@ jobs:
npm run prettier -- --check
npm run lint
fi
- uses: taiga-family/ci/actions/auto/push@v1.73.1
- uses: taiga-family/ci/actions/auto/push@v1.87.5
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}

Expand Down
Loading

0 comments on commit 552101d

Please sign in to comment.