Skip to content

Commit 6f8695f

Browse files
authored
Created github workflows
* Create codeql.yml * Adding workflow configs * Added CI Workflow * Track package-lock.json for reliable builds * Fix pipeline for rimraf * Fixed npm run lint * Linter continue on error * Type check continue on error
1 parent 65a25d0 commit 6f8695f

File tree

6 files changed

+12359
-6
lines changed

6 files changed

+12359
-6
lines changed

.github/workflows/ci.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
types: [opened, synchronize, reopened]
9+
10+
jobs:
11+
build-and-test:
12+
name: Build and Test on ${{ matrix.os }}
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os: [ubuntu-latest, macos-latest, windows-latest]
17+
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v4
21+
22+
- name: Setup Node.js
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: 20
26+
cache: 'npm'
27+
28+
- name: Install dependencies
29+
run: npm i
30+
31+
- name: Clearing previous builds
32+
run: npm run clean
33+
34+
- name: Run Linter
35+
run: npm run lint
36+
continue-on-error: true
37+
38+
- name: Type Check
39+
run: npx tsc --noEmit
40+
continue-on-error: true
41+
42+
- name: Build
43+
run: npm run build
44+
45+
- name: Run Tests
46+
run: npm test
47+

.github/workflows/codeql.yml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL Advanced"
13+
14+
on:
15+
push:
16+
branches: [ "main" ]
17+
pull_request:
18+
branches: [ "main" ]
19+
pull_request_target:
20+
branches: [ "main" ]
21+
schedule:
22+
- cron: '18 13 * * 2'
23+
24+
jobs:
25+
analyze:
26+
name: Analyze (${{ matrix.language }})
27+
# Runner size impacts CodeQL analysis time. To learn more, please see:
28+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
29+
# - https://gh.io/supported-runners-and-hardware-resources
30+
# - https://gh.io/using-larger-runners (GitHub.com only)
31+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
32+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
33+
permissions:
34+
# required for all workflows
35+
security-events: write
36+
37+
# required to fetch internal or private CodeQL packs
38+
packages: read
39+
40+
# only required for workflows in private repositories
41+
actions: read
42+
contents: read
43+
44+
strategy:
45+
fail-fast: false
46+
matrix:
47+
include:
48+
- language: javascript-typescript
49+
build-mode: none
50+
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
51+
# Use `c-cpp` to analyze code written in C, C++ or both
52+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
53+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
54+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
55+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
56+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
57+
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
58+
steps:
59+
- name: Checkout repository
60+
uses: actions/checkout@v4
61+
62+
# Add any setup steps before running the `github/codeql-action/init` action.
63+
# This includes steps like installing compilers or runtimes (`actions/setup-node`
64+
# or others). This is typically only required for manual builds.
65+
# - name: Setup runtime (example)
66+
# uses: actions/setup-example@v1
67+
68+
# Initializes the CodeQL tools for scanning.
69+
- name: Initialize CodeQL
70+
uses: github/codeql-action/init@v3
71+
with:
72+
languages: ${{ matrix.language }}
73+
build-mode: ${{ matrix.build-mode }}
74+
# If you wish to specify custom queries, you can do so here or in a config file.
75+
# By default, queries listed here will override any specified in a config file.
76+
# Prefix the list here with "+" to use these queries and those in the config file.
77+
78+
# 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
79+
# queries: security-extended,security-and-quality
80+
81+
# If the analyze step fails for one of the languages you are analyzing with
82+
# "We were unable to automatically build your code", modify the matrix above
83+
# to set the build mode to "manual" for that language. Then modify this step
84+
# to build your code.
85+
# ℹ️ Command-line programs to run using the OS shell.
86+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
87+
- if: matrix.build-mode == 'manual'
88+
shell: bash
89+
run: |
90+
echo 'If you are using a "manual" build mode for one or more of the' \
91+
'languages you are analyzing, replace this with the commands to build' \
92+
'your code, for example:'
93+
echo ' make bootstrap'
94+
echo ' make release'
95+
exit 1
96+
97+
- name: Perform CodeQL Analysis
98+
uses: github/codeql-action/analyze@v3
99+
with:
100+
category: "/language:${{matrix.language}}"

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ dist
77
**/.DS_Store
88
**/.vscode
99
**/.idea
10-
**/package-lock.json
1110
scripts/
1211
**/scripts/
1312
scripts/manual-notarize.js

eslint.config.mjs

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import tseslintPlugin from "@typescript-eslint/eslint-plugin";
4+
import tseslintParser from "@typescript-eslint/parser";
5+
import json from "@eslint/json";
6+
import markdown from "@eslint/markdown";
7+
import css from "@eslint/css";
8+
9+
export default [
10+
js.configs.recommended,
11+
12+
{
13+
files: ["**/*.{js,mjs,cjs,ts,tsx}"],
14+
languageOptions: {
15+
parser: tseslintParser,
16+
parserOptions: {
17+
ecmaVersion: "latest",
18+
sourceType: "module",
19+
},
20+
globals: {
21+
...globals.browser,
22+
...globals.node,
23+
},
24+
},
25+
plugins: {
26+
"@typescript-eslint": tseslintPlugin,
27+
},
28+
rules: {
29+
...tseslintPlugin.configs.recommended.rules,
30+
},
31+
},
32+
33+
{
34+
files: ["**/*.json"],
35+
plugins: { json },
36+
rules: { ...json.configs.recommended.rules },
37+
},
38+
{
39+
files: ["**/*.jsonc"],
40+
plugins: { json },
41+
rules: { ...json.configs.recommended.rules },
42+
},
43+
{
44+
files: ["**/*.json5"],
45+
plugins: { json },
46+
rules: { ...json.configs.recommended.rules },
47+
},
48+
{
49+
files: ["**/*.md"],
50+
plugins: { markdown },
51+
rules: { ...markdown.configs.recommended.rules },
52+
},
53+
{
54+
files: ["**/*.css"],
55+
plugins: { css },
56+
rules: { ...css.configs.recommended.rules },
57+
},
58+
];

0 commit comments

Comments
 (0)