💎 Code Quality #4
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: "💎 Code Quality" | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| code_quality: | |
| name: "🛠️ Build & 🧪 Test" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| - name: 📦 Install dependencies | |
| run: npm ci | |
| - name: 🧪 Run Unittests | |
| run: xvfb-run --auto-servernum npm run test | |
| - name: 🧪 Run Integrationtests | |
| run: xvfb-run --auto-servernum npm run integration-test | |
| - name: 🧪 Test Building of Artifact | |
| run: npx @vscode/vsce package |