Skip to content

Add scaffold

Add scaffold #26

Workflow file for this run

name: build
on:
push:
paths:
- 'l1/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '20.x', '22.x' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
working-directory: l1
run: npm t