Skip to content

Commit

Permalink
🐛 Fix(ci): vsce-action only supported on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
upupming committed Aug 21, 2021
1 parent a278e02 commit 62a2d34
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,21 @@ name: Create Release
jobs:
build:
name: Create Release
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'

# https://github.com/juliangruber/browser-run/issues/147#issuecomment-580958935
- run: sudo apt-get install xvfb

- name: yarn install, compile, and test coverage
run: |
yarn install
yarn compile
yarn test
xvfb-run --auto-servernum yarn test
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down

0 comments on commit 62a2d34

Please sign in to comment.