Improve legacy MPQ diagnostics and preview error reporting #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: build-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # The extension intentionally consumes these repositories through file:../... | |
| # dependencies. The real repositories are private local development sources, | |
| # so CI installs committed API/fixture mocks at the same sibling paths. | |
| - name: Check out extension | |
| uses: actions/checkout@v4 | |
| with: | |
| path: wurst4vscode | |
| - name: Prepare private dependency mocks | |
| working-directory: wurst4vscode | |
| run: | | |
| cp -R .ci/mocks/casc-ts ../casc-ts | |
| cp -R .ci/mocks/war3-model ../war3-model | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: wurst4vscode/package-lock.json | |
| - name: Install extension dependencies | |
| working-directory: wurst4vscode | |
| run: npm ci --ignore-scripts | |
| - name: Lint | |
| working-directory: wurst4vscode | |
| run: npm run lint | |
| - name: Typecheck | |
| working-directory: wurst4vscode | |
| run: npx tsc -p .ci/tsconfig.mocks.json --noEmit | |
| - name: Test | |
| working-directory: wurst4vscode | |
| run: npm test | |
| env: | |
| WURST_CI_MOCK_EXTERNALS: '1' | |
| # Release bundling is intentionally not part of this mock-based job. The | |
| # real war3-model package contributes transitive renderer build types that | |
| # are not represented by the private-dependency fixture. Release packaging | |
| # remains covered by local publishing validation with the real packages. |