chore(deps): bump secp256k1 from 4.0.3 to 4.0.4 #142
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: Machinomy CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
NODE_ENV: test | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Setup CMake | |
uses: jwlawson/actions-setup-cmake@v2 | |
with: | |
cmake-version: '3.29.0' | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install Yarn v4 | |
run: npm install -g yarn@berry | |
- name: Configure Yarn v4 | |
run: yarn set version berry | |
- name: Add Yarn to PATH | |
run: echo "$HOME/.yarn/bin" >> $GITHUB_PATH | |
- name: Install global dependencies | |
run: | | |
npm install node-gyp --global --no-save | |
npm install codecov --global --no-save | |
npm install hardhat --global --no-save | |
- name: AbiWrapper:Build project | |
run: cd packages/abi-wrapper && yarn && yarn build | |
# - name: IohTeeContracts:Build project | |
# run: cd packages/contracts && yarn && yarn build | |
- name: IohTeeExamples:Build project | |
run: cd packages/examples && yarn && yarn build | |
- name: IohTee:Build project | |
run: cd packages/iohtee && yarn && yarn build | |
- name: IohTeePlayground:Build project | |
run: cd packages/playground && yarn && yarn build |