Skip to content

Commit

Permalink
Setup github workflow for reason-langage-server (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
Et7f3 authored and jaredly committed Aug 27, 2019
1 parent fb1c1a0 commit ac9d35b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on: [push, pull_request]

jobs:
build:
name: Revery CI

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [10.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os}}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install esy
run: |
npm install -g esy
- name: Install dependencies
run: |
esy install
- name: Building reason-langage-server
run: |
esy build
env:
CI: true
- name: Building all in reason-langage-server
run: |
esy build dune build @all

0 comments on commit ac9d35b

Please sign in to comment.