Skip to content

Bump esbuild from 0.21.5 to 0.22.0 #1885

Bump esbuild from 0.21.5 to 0.22.0

Bump esbuild from 0.21.5 to 0.22.0 #1885

Workflow file for this run

# Code Quality Analysis
name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '16 21 * * 6'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
# exclude ServerNode.ts for now till https://github.com/github/codeql/issues/15852 is fixed
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
config: |
paths-ignore:
- packages/matter.js/src/node/ServerNode.ts
- '**/test/**/*Test.ts'
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"