Upgrade to Rescript 11 #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Build | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build-ppx: | |
name: PR Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Esy | |
run: yarn global add esy | |
- name: Install Dependencies | |
run: yarn | |
- name: Build PPX | |
run: yarn build-ppx | |
- name: Build Library | |
run: yarn build-lib | |
- name: Run tests | |
run: yarn test |