Skip to content

Merge pull request #98 from merkle-open/fix/maintenance #162

Merge pull request #98 from merkle-open/fix/maintenance

Merge pull request #98 from merkle-open/fix/maintenance #162

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
node-version: [20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test
env:
CI: true
- run: npm run size