Skip to content
Open
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
5 changes: 2 additions & 3 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ jobs:
# Run install dependencies
- name: Install dependencies
run: |
npm ci --ignore-scripts
npm rebuild cpu-features ssh2
npm ci

# Run tests without xvfb, if not running on ubuntu
- name: Build and Test (non-Linux)
Expand Down Expand Up @@ -113,7 +112,7 @@ jobs:
node -e "
const fs = require('fs');
const pkg = JSON.parse(fs.readFileSync('package.json'));
pkg.scripts['vscode:prepublish'] += ' && npm install --ignore-scripts @secretlint/node';
pkg.scripts['vscode:prepublish'] += ' && npm install @secretlint/node';
fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2));
"
xvfb-run --server-args="-screen 0 1920x1080x24" npm run public-ui-test
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ jobs:
- name: Install dependencies
run: |
npm install -g typescript "vsce" "ovsx"
npm install --ignore-scripts
npm rebuild cpu-features ssh2
npm install
echo "EXT_VERSION=$(cat package.json | jq -r .version)" >> $GITHUB_ENV
- name: Build And Run Unit Tests
run: xvfb-run npm run test
Expand Down
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ tsconfig.json
tsconfig.tsbuildinfo
tslint.json
vsc-extension-quickstart.md
.nvmrc
.vscode/**
.vscode-test/**
*.vsix
Loading
Loading