Skip to content

Bump braces from 3.0.2 to 3.0.3 #24

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #24

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-test:
strategy:
matrix:
os: [macos-latest, 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
- name: Install Dependencies
run: npm install && (cd server && npm install)
- name: Language Server Build
run: npm run server-compile
- name: Build
run: npm run esbuild
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'