fix(slider): sync emitted value and input value (#1200) #374
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main Branch Check | |
on: | |
push: | |
branches: [v6] | |
env: | |
USE_BROWSERSTACK: ${{ secrets.USE_BROWSERSTACK }} | |
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} | |
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | |
BROWSERSTACK_BUILD: 'Test Coverage ${{ github.run_number }}' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Setup resources and environment | |
uses: ./.github/actions/setup | |
id: setup | |
- name: Install Dependencies | |
run: npm ci --audit=false --fund=false | |
- name: Version | |
run: | | |
node -v | |
npm -v | |
- name: Reset NX # temporary | |
run: npm run reset | |
- name: Build | |
run: npm run build | |
test-chrome: | |
name: Test / Chrome | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Need this step for support feature toggle testing on BrowserStack on/off | |
- name: Setup browser versions to testing | |
run: | | |
[[ "${{ env.USE_BROWSERSTACK }}" == "true" ]] && export BROWSERS="chrome" || export BROWSERS="default" | |
[[ "${{ env.USE_BROWSERSTACK }}" == "true" ]] && export PARALLEL=3 || export PARALLEL=1 | |
echo "BROWSERS=\"$BROWSERS\"" >> $GITHUB_ENV | |
echo "PARALLEL=\"$PARALLEL\"" >> $GITHUB_ENV | |
- name: Test | |
uses: ./.github/actions/run-test | |
with: | |
browsers: ${{ env.BROWSERS }} | |
mode: 'all' | |
parallel: ${{ env.PARALLEL }} | |
browserstack: ${{ env.USE_BROWSERSTACK }} | |
username: ${{ env.BROWSERSTACK_USERNAME }} | |
access-key: ${{ env.BROWSERSTACK_ACCESS_KEY }} | |
scan-sonarcloud: | |
name: Scan | |
needs: test-chrome | |
uses: ./.github/workflows/sonarcloud_scan.yml | |
secrets: inherit | |
scan-blackduck: | |
name: Scan | |
uses: ./.github/workflows/blackduck_scan.yml | |
with: | |
target: Production | |
secrets: inherit | |
scan-semgrep: | |
name: Scan | |
uses: ./.github/workflows/semgrep_scan.yml | |
with: | |
verbose: false | |
secrets: inherit |