Skip to content

Commit

Permalink
added runner.os
Browse files Browse the repository at this point in the history
  • Loading branch information
msivasubramaniaan committed May 29, 2024
1 parent 4008310 commit e02e550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:
uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1
env:
NODE_OPTIONS: --max_old_space_size=16384
if: matrix.os == 'ubuntu-latest'
if: runner.os == 'Linux'
with:
run: yarn run ui-test
options: -screen 0 1920x1080x24

#Package vsix
- name: Build .vsix package on Linux
if: matrix.os == 'ubuntu-latest'
if: runner.os == 'Linux'
run: |
VERSION=$(node -p "require('./package.json').version")
npx vsce package -o vscode-yaml-${VERSION}-${GITHUB_RUN_ID}-${GITHUB_RUN_NUMBER}.vsix
Expand Down

0 comments on commit e02e550

Please sign in to comment.