Bump elliptic from 6.5.4 to 6.6.0 in /example #1059
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: Integration tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
run_integration_tests: | |
name: Integration tests | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
env: | |
CI: true | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.76.0 | |
override: true | |
- name: Install esy | |
run: npm install -g esy | |
- uses: esy/github-action@6863524ed7748e7882e317e31ac2b8b107011744 | |
with: | |
cache-key: ${{ hashFiles('esy.lock/index.json') }} | |
working-directory: packages/rescript-relay/rescript-relay-ppx | |
- name: Build PPX | |
uses: esy/github-action@6863524ed7748e7882e317e31ac2b8b107011744 | |
with: | |
cache-key: ${{ hashFiles('esy.lock/index.json') }} | |
working-directory: packages/rescript-relay/rescript-relay-ppx | |
- name: Install - bindings | |
working-directory: packages/rescript-relay | |
run: | | |
yarn install | |
- name: Build - compiler & Relay test files | |
working-directory: packages/rescript-relay | |
run: | | |
yarn build:test | |
- name: git status | |
id: git_status | |
run: | | |
echo "::set-output name=status::$( git status --porcelain )" | |
- name: Exit if files modified | |
run: | | |
exit 1 | |
if: steps.git_status.outputs.status | |
- name: Build - bindings | |
working-directory: packages/rescript-relay | |
run: | | |
yarn build | |
- name: Integration tests | |
working-directory: packages/rescript-relay | |
run: | | |
yarn test:ci | |
- name: Integration tests (preloaded) | |
working-directory: packages/rescript-relay | |
env: | |
ENABLE_PERSISTING: true | |
run: | | |
yarn test:ci |