We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec28f5 commit 7df4b2fCopy full SHA for 7df4b2f
.github/workflows/publish.yaml
@@ -19,13 +19,14 @@ jobs:
19
uses: actions/setup-node@v4
20
with:
21
node-version: 18.x
22
- - run: npm install
23
- - run: xvfb-run -a npm test
24
- if: runner.os == 'Linux'
25
- - run: npm test
26
- if: runner.os != 'Linux'
+ - run: npm install -G yarn
+ - run: yarn install --ignore-engines
+# - run: xvfb-run -a npm test
+# if: runner.os == 'Linux'
+# - run: npm test
27
+# if: runner.os != 'Linux'
28
- name: Publish
29
if: success() && startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest'
- run: npm run deploy
30
+ run: yarn deploy
31
env:
32
VSCE_PAT: ${{ secrets.VSCE_PAT }}
0 commit comments