Skip to content

refactor: exit codes to match FunC reference implementation and use c… #46

refactor: exit codes to match FunC reference implementation and use c…

refactor: exit codes to match FunC reference implementation and use c… #46

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
node-version: [22]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
# - name: Run Misti
# run: yarn misti --min-severity medium ./tact.config.json
- name: Run tests
run: yarn test