Skip to content

update: use same block size for client and serve, instead of an ancie… #75

update: use same block size for client and serve, instead of an ancie…

update: use same block size for client and serve, instead of an ancie… #75

Workflow file for this run

name: Install, build and run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
# NOTE: 20.x does not work yet for us!
node-version:
- "16.x"
- "18.x"
steps:
- uses: actions/checkout@v3
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g pnpm
- run: sudo apt-get install libfuse-dev
- run: pnpm install
- run: pnpm build
- run: pnpm test