Skip to content

add contract-ci

add contract-ci #1

Workflow file for this run

name: CI-Contract
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
python-version: ${{ matrix.node-version }}
- run: cd dqpu-contract
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test