mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-14 12:43:26 +02:00
* build(deps): update dependencies @tailwindcss/vite 4.2.2 → 4.2.4 @tanstack/eslint-plugin-query 5.99.0 → 5.100.1 @tanstack/react-query 5.99.0 → 5.100.1 prettier-plugin-tailwindcss 0.7.2 → 0.7.3 react-i18next 17.0.2 → 17.0.4 react-router-dom 7.14.1 → 7.14.2 tailwindcss 4.2.2 → 4.2.4 typescript 6.0.2 → 6.0.3 @scure/bip32 2.0.1 → 2.2.0 @scure/bip39 2.0.1 → 2.2.0 eslint-plugin-react-hooks 7.0.1 → 7.1.1 lucide-react 1.8.0 → 1.9.0 react-hook-form 7.72.1 → 7.73.1 typescript-eslint 8.58.2 → 8.59.0 * chore(build): fix violations after eslint plugin updates * chore: check window availability in useIsMobile * build(deps): update dependencies @tanstack/eslint-plugin-query 5.100.1 → 5.100.6 @tanstack/react-query 5.100.1 → 5.100.6 prettier-plugin-tailwindcss 0.7.3 → 0.7.4 react-i18next 17.0.4 → 17.0.6 typescript-eslint 8.59.0 → 8.59.1 * build(deps): update dependencies jsdom 29.0.2 → 29.1.0 lucide-react 1.9.0 → 1.13.0 prettier-plugin-tailwindcss 0.7.4 → 0.8.0 react-hook-form 7.73.1 → 7.74.0 * build(ci): check format * chore(ci): run pipeline for master and devel
73 lines
2.4 KiB
YAML
73 lines
2.4 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
|
||
- devel
|
||
pull_request:
|
||
# The branches below must be a subset of the branches above
|
||
branches:
|
||
- master
|
||
- devel
|
||
|
||
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
|
||
# Hint: TypeScript analysis is performed by running the JavaScript extractor with TypeScript enabled. This is the default.
|
||
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@v5
|
||
|
||
# Initializes the CodeQL tools for scanning.
|
||
- name: Initialize CodeQL
|
||
uses: github/codeql-action/init@v4
|
||
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@v4
|
||
|
||
# ℹ️ 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@v4
|