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
19 changes: 7 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,13 @@ jobs:
- uses: bufbuild/buf-action@v1
with:
setup_only: true
- name: install-deps
run: npm ci
- name: build
run: npm run compile
- name: prepworkspaces
run: npm run prepworkspaces
- name: lint
run: npm run lint
- name: format
run: npm run format
- run: npm ci
- run: npm run compile
- run: npm run prepworkspaces
- run: npm run lint
- run: npm run format
- name: check diff
run: node scripts/gh-diffcheck.mjs
- name: integration-tests-with-xvfb
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -47,8 +44,6 @@ jobs:
# Limiting playwright tests to macOS for now due to issues with xvfb on Linux and
# timeouts on windows
if: runner.os == 'macOS'
- name: check diff
run: node scripts/gh-diffcheck.mjs
- name: upload-playwright-test-results
uses: actions/upload-artifact@v6
if: always()
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"assist": {
"actions": {
"source": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run prepworkspaces",
"prepworkspaces": "npm ci --prefix test/workspaces/empty-single",
"lint": "biome lint --fix .",
"lint": "biome lint",
"test": "npm run test:integration && npm run test:playwright",
"test:integration": "vscode-test",
"pretest:playwright": "node ./test/playwright/setup-script.mts",
"test:playwright": "playwright test",
"test:playwright:debug": "playwright test --debug --workers=1 --retries=0 --reporter=list",
"package": "vsce package",
"package:prerelease": "vsce package --pre-release",
"format": "biome format --write ."
"format": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/register-all-commands.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import type * as vscode from "vscode";
import type { Command } from "./command";
import { bufBuild } from "./buf-build";
import { bufConfigInit } from "./buf-config-init";
import { bufConfigLsBreakingRules } from "./buf-config-ls-breaking-rules";
import { bufConfigLsLintRules } from "./buf-config-ls-lint-rules";
import { bufDepPrune } from "./buf-dep-prune";
import { bufDepUpdate } from "./buf-dep-update";
import { bufGenerate } from "./buf-generate";
import type { Command } from "./command";
import { showCommands } from "./show-commands";
import { showOutput } from "./show-output";
import { startLanguageServer } from "./start-lsp";
Expand Down