Skip to content

ci: Update GH release workflow #69

ci: Update GH release workflow

ci: Update GH release workflow #69

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- chains/cheqd/**
- legacy/cheqd/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
codeql-analysis:
name: "CodeQL Analysis"
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v3
- name: Initialise CodeQL
uses: github/codeql-action/init@v2
with:
languages: 'javascript'
queries: security-and-quality
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2