Skip to content

Update LICENSE

Update LICENSE #8

Workflow file for this run

# This workflow will install dependencies and build the contract
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: |
npm i -g yarn
npm i --include=dev
- name: Build contract
run: |
yarn compile