Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
05cf838
ci: update CI workflows for dev and prod branches, add pre-release an…
ViTeXFTW Jul 7, 2026
230e356
chore(deps): bump actions/download-artifact from 4 to 8 (#6)
dependabot[bot] Jul 7, 2026
28e0b97
chore(deps): bump actions/setup-node from 4 to 6 (#7)
dependabot[bot] Jul 7, 2026
003bf17
chore(deps): bump actions/upload-artifact from 4 to 7 (#9)
dependabot[bot] Jul 7, 2026
017fc46
chore(deps): bump logos from 0.15.1 to 0.16.1 (#10)
dependabot[bot] Jul 7, 2026
6fb7415
chore(deps): bump toml from 0.8.23 to 1.1.2+spec-1.1.0 (#11)
dependabot[bot] Jul 7, 2026
293ebca
chore(deps): bump criterion from 0.5.1 to 0.8.2 (#12)
dependabot[bot] Jul 7, 2026
9a90f86
chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /editors/vsco…
dependabot[bot] Jul 7, 2026
0d033ed
chore(deps-dev): bump @types/vscode in /editors/vscode (#14)
dependabot[bot] Jul 7, 2026
4622987
chore(deps): bump vscode-languageclient from 9.0.1 to 10.1.0 in /edit…
dependabot[bot] Jul 7, 2026
938fb09
chore(deps): bump actions/checkout from 4 to 7 (#8)
dependabot[bot] Jul 7, 2026
0b3ac05
chore(deps): downgrade vscode-languageclient to 9.0.1 and update @typ…
ViTeXFTW Jul 7, 2026
6553b63
chore(deps-dev): bump @types/node in /editors/vscode (#16)
dependabot[bot] Jul 7, 2026
5350027
chore(deps): update @types/node to version 26.1.0 in package.json and…
ViTeXFTW Jul 7, 2026
a6f34a5
feat(rider): add Rider behavior and token list definitions in schema …
ViTeXFTW Jul 7, 2026
06e63b3
fix: flag unused WeaponSetUpgrade modules (#26)
ViTeXFTW Jul 7, 2026
17bf029
feat: index W3D assets with persistent caching (#33)
ViTeXFTW Jul 13, 2026
c1ffd97
chore: bump prerelease version
Jul 13, 2026
4fc1c27
feat: align schema with engine module parsers (#40)
ViTeXFTW Jul 15, 2026
b327762
ci: unify manual prerelease and release flow (#41)
ViTeXFTW Jul 15, 2026
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
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ name: CI

on:
push:
branches: [main]
branches: [dev, prod]
pull_request:
branches: [dev, prod]
workflow_call:

permissions:
Expand All @@ -30,7 +31,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: Swatinem/rust-cache@v2
- name: cargo test
run: cargo test --locked
Expand All @@ -47,7 +48,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: Swatinem/rust-cache@v2
- name: cargo fmt
run: cargo fmt --all --check
Expand All @@ -57,9 +58,9 @@ jobs:
extension:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/corpus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
corpus:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: Swatinem/rust-cache@v2
- name: Fetch corpus
run: bash scripts/fetch-corpus.sh
Expand Down
Loading