Skip to content

Bump secp256k1 from 5.0.0 to 5.0.1 #76

Bump secp256k1 from 5.0.0 to 5.0.1

Bump secp256k1 from 5.0.0 to 5.0.1 #76

Workflow file for this run

name: "Main"
on:
- push
jobs:
configure:
runs-on: ubuntu-latest
outputs:
uid_gid: ${{ steps.get-user.outputs.uid_gid }}
datetime: ${{ steps.get-datetime.outputs.datetime }}
steps:
- id: get-user
run: echo "uid_gid=$(id -u):$(id -g)" >> $GITHUB_OUTPUT
- id: get-datetime
run: echo "datetime=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_OUTPUT
build:
needs: [configure]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install node
uses: actions/setup-node@v3
- name: Install dependencies
run: yarn install
- name: Run linter
run: yarn linter
- name: Run formatter
run: yarn format
- name: Build
run: yarn build
- name: Unit tests
run: yarn test:unit