Skip to content

Commit

Permalink
Merge pull request #1 from andrei-m/ci
Browse files Browse the repository at this point in the history
Test Github actions
  • Loading branch information
andrei-m committed Feb 3, 2024
2 parents 770f420 + 91b3528 commit 401c051
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 43 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test-build.yml
@@ -0,0 +1,27 @@
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main

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
- run: npm install
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'
43 changes: 0 additions & 43 deletions vsc-extension-quickstart.md

This file was deleted.

0 comments on commit 401c051

Please sign in to comment.