This commit is contained in:
Kirstyn Amperiadis 2024-06-24 16:17:19 -05:00 коммит произвёл GitHub
Родитель acd5a4bd84
Коммит a19738b786
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 89 добавлений и 155 удалений

42
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -1,42 +0,0 @@
on:
pull_request:
branches:
- master
jobs:
build_test_job:
name: 'Build and test job'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
language: [javascript-typescript]
steps:
- name: 'Checking out repo code'
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
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.
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- name: 'Validate build'
run: |
npm install
npm run build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
- name: 'Run L0 tests'
run: |
npm run test

84
.github/workflows/codeql.yml поставляемый
Просмотреть файл

@ -1,84 +0,0 @@
# 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" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '30 22 * * 2'
jobs:
analyze:
name: Analyze
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners
# Consider using larger runners for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read
strategy:
fail-fast: false
matrix:
language: [ 'javascript-typescript' ]
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
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.
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# 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
# Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

Просмотреть файл

@ -1,29 +0,0 @@
jobs:
- job: "Build_AND_Start_CodeQL_Reporting"
variables:
ApplicationInsightAgentVersion: 3.4.16
Codeql.Enabled: true
Codeql.Language: javascript
pool:
name: '1ES-Hosted-AzFunc'
demands:
- ImageOverride -equals MMS2019TLS
steps:
- checkout: self
- task: CodeQL3000Init@0
inputs:
Enabled: true
Language: javascript
# Build tasks
- task: Bash@3
displayName: 'Build project'
inputs:
targetType: 'inline'
script: |
npm install
npm run build
- task: CodeQL3000Finalize@0
condition: always()

45
eng/ci/official-build.yml Normal file
Просмотреть файл

@ -0,0 +1,45 @@
schedules:
- cron: "30 22 * * 2"
displayName: Nightly Build
branches:
include:
- master
always: true
trigger:
batch: true
branches:
include:
- master
- releases/*
pr: none
resources:
repositories:
- repository: 1es
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release
- repository: eng
type: git
name: engineering
ref: refs/tags/release
variables:
- template: ci/variables/build.yml@eng
- template: ci/variables/cfs.yml@eng
extends:
template: v1/1ES.Official.PipelineTemplate.yml@1es
parameters:
pool:
name: 1es-pool-azfunc
image: 1es-windows-2022
os: windows
stages:
- stage: Build_And_Test
jobs:
- template: /eng/ci/templates/jobs/build-and-test.yml@self

Просмотреть файл

@ -0,0 +1,44 @@
parameters:
- name: pools
type: object
default:
- type: linux
name: 1es-pool-azfunc
image: 1es-ubuntu-22.04
os: linux
- type: windows
name: 1es-pool-azfunc
image: 1es-windows-2022
os: windows
- type: macos
name: Azure Pipelines
image: macOS-latest
os: macOS
jobs:
- ${{ each pool in parameters.pools }}:
- job: Build_And_Test_${{ pool.type }}
displayName: 'Build and Test ${{ pool.type }}'
pool:
name: ${{ pool.name }}
image: ${{ pool.image }}
os: ${{ pool.os }}
steps:
- task: Npm@1
inputs:
command: 'install'
displayName: 'Install dependencies'
- task: Npm@1
inputs:
command: 'custom'
customCommand: 'run build'
displayName: 'Build'
- task: Npm@1
inputs:
command: 'custom'
customCommand: 'run test'
displayName: 'Test'