Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/introduce-sbb-st…
Browse files Browse the repository at this point in the history
…epper
  • Loading branch information
dauriamarco committed Apr 15, 2024
2 parents e544ab2 + 8054d9a commit c3e9ca9
Show file tree
Hide file tree
Showing 1,083 changed files with 17,360 additions and 15,629 deletions.
6 changes: 0 additions & 6 deletions .eslintignore

This file was deleted.

132 changes: 0 additions & 132 deletions .eslintrc.json

This file was deleted.

24 changes: 12 additions & 12 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ body:
attributes:
label: Bug type
options:
- 'Functionality'
- 'Accessibility'
- 'Performance'
- 'Security vulnerability'
- 'Other'
- Functionality
- Accessibility
- Performance
- Security vulnerability
- Other
validations:
required: true
- type: dropdown
id: component-or-design-token
attributes:
label: It affects the following packages
options:
- 'Design Tokens'
- 'Components'
- 'Both'
- 'Other'
- Design Tokens
- Components
- Both
- Other
validations:
required: true
- type: input
Expand Down Expand Up @@ -78,9 +78,9 @@ body:
attributes:
label: Input mode
options:
- 'Mouse/Keyboard'
- 'Touch'
- 'Other'
- Mouse/Keyboard
- Touch
- Other
validations:
required: false
- type: input
Expand Down
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/contributing-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ body:
attributes:
label: Contribution type
options:
- 'Contribute a new component'
- 'Contribute an enhancement of a component'
- Contribute a new component
- Contribute an enhancement of a component
validations:
required: true
- type: dropdown
id: component-or-design-token
attributes:
label: It affects the following packages
options:
- 'Design Tokens'
- 'Components'
- Design Tokens
- Components
- 'Design Tokens & Components'
- 'Other'
- Other
validations:
required: true
- type: textarea
Expand Down
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/feature-request-or-enhancement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ body:
attributes:
label: Request type
options:
- 'Request for a new component'
- 'Request for enhancement of a component'
- Request for a new component
- Request for enhancement of a component
validations:
required: true
- type: dropdown
id: component-or-design-token
attributes:
label: It affects the following packages
options:
- 'Design Tokens'
- 'Components'
- Design Tokens
- Components
- 'Design Tokens & Components'
- 'Other'
- Other
validations:
required: true
- type: textarea
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ body:
attributes:
label: It affects the following packages
options:
- 'Design Tokens'
- 'Components'
- Design Tokens
- Components
- 'Design Tokens & Components'
- 'Other'
- Other
validations:
required: true
- type: input
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/story.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: '[Internal] Story'
description: An internal story for lyne-components
title: 'story(COMPONENT): TITLE'
labels: ['story', 'to-refine']
labels: [story, to-refine]
body:
- type: textarea
id: description
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: 'CodeQL'
name: CodeQL

on:
push:
Expand All @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ['javascript']
language: [javascript]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# - run: |
# make bootstrap
# make release

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration-secure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Continuous Integration Secure
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
on:
workflow_run:
workflows: ['Continuous Integration']
workflows: [Continuous Integration]
types: [completed]

permissions:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
# This label is used for filtering deployments in ArgoCD
uses: actions-ecosystem/action-add-labels@v1
with:
labels: 'preview-available'
labels: preview-available
number: ${{ env.PR_NUMBER }}

codecov:
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive

- name: Run eslint
Expand All @@ -27,8 +27,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive

- name: 'Integrity: Verify workspace integrity'
Expand All @@ -42,8 +42,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive

- name: Install browser dependencies
Expand All @@ -52,7 +52,7 @@ jobs:
run: yarn test
env:
NODE_ENV: production
- name: 'Assert no new snapshots (run `yarn test --ci` if this fails)'
- name: Assert no new snapshots (run `yarn test --ci` if this fails)
run: git diff --exit-code
- name: Store coverage
if: github.event_name == 'pull_request'
Expand All @@ -67,8 +67,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive

- name: Run build
Expand Down Expand Up @@ -124,8 +124,8 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive
- name: Generate chromatic stories
run: yarn generate:chromatic-stories
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-title-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive

- name: 'Lint: Pull request title'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preview-image-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ jobs:
}
- uses: actions/delete-package-versions@v4
with:
package-name: 'lyne-components/storybook-preview'
package-type: 'container'
package-name: lyne-components/storybook-preview
package-type: container
delete-only-untagged-versions: 'true'
Loading

0 comments on commit c3e9ca9

Please sign in to comment.