Skip to content

try to test be workflows #51

try to test be workflows

try to test be workflows #51

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix: { dir: ["backend", "frontend", "smart_contract"] }
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Install deps
run: npm install
working-directory: ${{ matrix.dir }}
- name: Run ci
run: npm ci
working-directory: ${{ matrix.dir }}