mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-26 04:00:15 -04:00
* fix: bgColor with useColorExpression property (#1426) * chore(deps): bump @adobe/css-tools from 4.3.1 to 4.3.2 (#1421) Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.3.1 to 4.3.2. - [Changelog](https://github.com/adobe/css-tools/blob/main/History.md) - [Commits](https://github.com/adobe/css-tools/commits) --- updated-dependencies: - dependency-name: "@adobe/css-tools" dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): update minor and patch (#1429) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix(deps): update dependency ws to v8.15.0 (#1430) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update minor and patch (#1431) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix(listbox): let color resolver pick up the index instead of hex (#1428) * fix: enable picking up the index instead of hex * fix: resolve color picker color in other cases too * fix: apply backdrop filter * fix: limit backdrop to when we have a bg image * test: update bg image * test: update unit test * chore(deps): update dependency lerna to v8 (#1416) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update minor and patch (#1433) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency rollup to v4.9.1 (#1435) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix: use 12px as default font size in theme (#1427) * chore(deps): update github/codeql-action action to v3 (#1434) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix(listbox): make search focus border color blue (#1432) * fix: search focus border color * test: update tests and snapshots --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Christofer Splittorff <cbt@qlik.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Johan Lahti <johanlahti@users.noreply.github.com> Co-authored-by: Max Gefvert <max.gefvert@qlik.com>
71 lines
2.3 KiB
YAML
71 lines
2.3 KiB
YAML
# For most projects, this workflow file will not need changing; you simply need
|
||
# to commit it to your repository.
|
||
#
|
||
# You may wish to alter this file to override the set of languages analyzed,
|
||
# or to provide custom queries or build logic.
|
||
#
|
||
# ******** NOTE ********
|
||
# We have attempted to detect the languages in your repository. Please check
|
||
# the `language` matrix defined below to confirm you have the correct set of
|
||
# supported CodeQL languages.
|
||
#
|
||
name: 'CodeQL'
|
||
|
||
on:
|
||
push:
|
||
branches: [master]
|
||
pull_request:
|
||
# The branches below must be a subset of the branches above
|
||
branches: [master]
|
||
schedule:
|
||
- cron: '19 15 * * 5'
|
||
|
||
jobs:
|
||
analyze:
|
||
name: Analyze
|
||
runs-on: ubuntu-latest
|
||
permissions:
|
||
actions: read
|
||
contents: read
|
||
security-events: write
|
||
|
||
strategy:
|
||
fail-fast: false
|
||
matrix:
|
||
language: ['javascript']
|
||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
||
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
||
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@v4
|
||
|
||
# Initializes the CodeQL tools for scanning.
|
||
- name: Initialize CodeQL
|
||
uses: github/codeql-action/init@v3
|
||
with:
|
||
languages: ${{ matrix.language }}
|
||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||
# By default, queries listed here will override any specified in a config file.
|
||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||
# If this step fails, then you should remove it and run the build manually (see below)
|
||
- name: Autobuild
|
||
uses: github/codeql-action/autobuild@v3
|
||
|
||
# ℹ️ Command-line programs to run using the OS shell.
|
||
# 📚 https://git.io/JvXDl
|
||
|
||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||
# and modify them (or add more) to build your code if your project
|
||
# uses a compiled language
|
||
|
||
#- run: |
|
||
# make bootstrap
|
||
# make release
|
||
|
||
- name: Perform CodeQL Analysis
|
||
uses: github/codeql-action/analyze@v3
|