Skip to content

Add canvaswasm to Vercel build bundle for lambda #1587

Add canvaswasm to Vercel build bundle for lambda

Add canvaswasm to Vercel build bundle for lambda #1587

Workflow file for this run

# Security policy for GitHub Security Advisories
name: CodeQL Security Scanning
on:
push:
branches-ignore:
- 'hotfix/**'
pull_request:
workflow_dispatch:
jobs:
analyze:
name: Analyze Code
if: ${{ !startsWith(github.head_ref || github.ref_name, 'hotfix/') }}
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['javascript', 'actions']
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
config-file: ./.github/codeql/codeql-config.yml
- name: Autobuild
if: matrix.language == 'javascript'
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
hotfix-bypass:
name: CodeQL Hotfix Bypass
runs-on: ubuntu-latest
if: ${{ startsWith(github.head_ref || github.ref_name, 'hotfix/') }}
permissions: {}
steps:
- name: Skip CodeQL for hotfix branch
run: echo "hotfix/* branch detected; skipping CodeQL but allowing deployments."