Skip to content

Update README

Update README #19

Workflow file for this run

name: 🛠️ Builds
on:
push:
branches:
- '*'
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Run npm install
run: npm install
- name: Run pretest
run: xvfb-run -a npm run pretest
if: runner.os == 'Linux'
- name: Run pretest
run: npm run pretest
if: runner.os != 'Linux'
- name: Run vsce package
run: mkdir -p out/vsix && npm exec vsce package -- -o out/vsix/
- name: Upload artifact
if: runner.os == 'Linux'
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: |
${{ github.workspace }}/out/vsix/