Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .github/workflows/CI.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/tests.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,44 +1,55 @@
# 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'
name: Workflow

on:
push:
branches: ['develop', main]
pull_request:
# The branches below must be a subset of the branches above
branches: ['develop']
branches:
- '**'
schedule:
- cron: '35 9 * * 6'

jobs:
build-test:
runs-on: ubuntu-latest
if: github.event_name != 'schedule'
strategy:
matrix:
node-version: [22.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install system dependencies
run: |
echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns

- run: yarn install
- run: yarn check

- name: Run tests
run: yarn test

analyze:
name: Analyze
runs-on: ubuntu-latest
needs: build-test
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://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
Loading