mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2024-11-15 11:45:58 +00:00
27 lines
552 B
YAML
27 lines
552 B
YAML
|
name: "@vscode/test-electron"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [macos-11, ubuntu-latest, windows-latest]
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Install Node.js
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 10.x
|
||
|
- run: npm ci
|
||
|
- run: xvfb-run -a npm test
|
||
|
if: runner.os == 'Linux'
|
||
|
- run: npm test
|
||
|
if: runner.os != 'Linux'
|