Skip to content

syntrust is push code to main πŸš€ #81

syntrust is push code to main πŸš€

syntrust is push code to main πŸš€ #81

Workflow file for this run

name: UT
run-name: ${{ github.actor }} is push code to main πŸš€
on:
pull_request:
branches:
- main
jobs:
build:
name: unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm install
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install forge-std
run: git submodule init && git submodule update
- name: Test
run: npm run test