mirror of
https://github.com/zama-ai/fhevm-solidity.git
synced 2026-04-17 03:00:47 -04:00
fix: typo .env.example fix: ci tests fix: ci test fix: removed ciphertext verification in oracle fix: typo OraclePredeploy fix: gaslimit fix: bigger ci machine fix: bigger ci machine fix: increased ci sleep time fix: longer sleep for ci fix: longer sleep fix: longer sleep fix: change sleeping times fix: simplest test fix: ci fix: add compile ci: show logs/errs of different services fix: test fix: typo
30 lines
645 B
YAML
30 lines
645 B
YAML
name: Main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: large_ubuntu_32
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: cp .env.example .env
|
|
- run: npm ci
|
|
- name: "npm CI test"
|
|
run: |
|
|
# sometimes not created and is not tailed
|
|
touch fhevm.log
|
|
npm run fhevm:start &
|
|
sleep 60
|
|
npm run test:inband
|
|
npm run fhevm:stop || true
|