Skip to content

fix: remove hardcoded memsize system option #2247

fix: remove hardcoded memsize system option

fix: remove hardcoded memsize system option #2247

Workflow file for this run

# This workflow perform basic checks for a pull request
name: Pull Request Check
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- run: npm ci
- run: npm run format:check
- run: npm run copyright:check
- run: xvfb-run -a npm run test
if: runner.os == 'Linux'
- run: npx @vscode/vsce package
- uses: actions/upload-artifact@v4
with:
path: ./*.vsix
retention-days: 5