Skip to content

Refactor staging

Refactor staging #34

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
run: |
cd l1
npm install
npm test