fix issue with PPX not actually converting all functions to uncurried #603
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: CLI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: CLI | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/rescript-relay-cli | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 12.19.0 | |
env: | |
CI: true | |
- name: Install | |
run: | | |
yarn --frozen-lockfile | |
- name: Build | |
run: | | |
yarn build | |
- name: Test | |
run: | | |
yarn test |