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
9 changes: 4 additions & 5 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ name: Build

on:
push:
branches: [main, master]
branches: [ main, master ]
pull_request:
branches: [main, master]
branches: [ main, master ]
# schedule:
# - cron: "35 23 * * 5"

Expand All @@ -27,7 +27,7 @@ jobs:
# Node.js 14 has been deprecated since Oct 2021
# Node.js 15 has been deprecated since Apr 2021
# Node.js 16 has been deprecated since Oct 2023
nodejs_version: [24, 26]
nodejs_version: [ 24 ]

steps:
- name: Checkout repository
Expand All @@ -39,12 +39,11 @@ jobs:
node-version: ${{ matrix.nodejs_version }}
cache: 'yarn'


- name: Initialize
shell: bash
# export DISPLAY=':99.0'
# usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
run: yarn install
run: yarn install --frozen-lockfile

- name: Test for Linux
if: runner.os == 'Linux'
Expand Down
50 changes: 25 additions & 25 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,34 +43,34 @@ jobs:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository
uses: actions/checkout@v4
- 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.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# 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.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# 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.
# 📚 https://git.io/JvXDl
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release
#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -332,12 +332,12 @@
"@types/glob": "^7.2.0",
"@types/luxon": "^2.0.7",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"@types/node": "^24.0.0",
"@types/node-fetch": "^2.6.13",
"@types/vscode": "^1.110.0",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vscode/test-electron": "^2.5.2",
"@vscode/test-web": "^0.0.80",
"@vscode/vsce": "^3.7.1",
Expand All @@ -349,7 +349,7 @@
"buffer": "^6.0.3",
"circular-dependency-plugin": "^5.2.2",
"crypto-browserify": "^3.12.0",
"eslint": "^9.8.0",
"eslint": "^9.39.4",
"glob": "^7.2.0",
"https-browserify": "^1.0.0",
"js-yaml": "^4.1.1",
Expand All @@ -370,7 +370,7 @@
"vm-browserify": "^1.1.2",
"vscode-languageclient": "^9.0.1",
"webpack": "^5.105.4",
"webpack-cli": "^5.1.0"
"webpack-cli": "^7.0.2"
},
"dependencies": {
"cheerio": "^1.2.0",
Expand Down
Loading
Loading