Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Change header level #135

Change header level

Change header level #135

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
sudo apt-get install -y capnproto
cd build-scripts
npm install
npm test
cd ..
cd backend
cargo test
env:
CI: true