Skip to content

update doc

update doc #13

Workflow file for this run

name: CI
'on':
- push
jobs:
bazel_build:
runs-on: ubuntu-18.04
strategy:
matrix:
node:
- '16'
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: "${{ matrix.node }}"
- uses: actions/cache@v2
id: yarn-cache
with:
path: |
node_modules
**/node_modules
key: "${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}"
restore-keys: "${{ runner.os }}-yarn-\n"
- name: Installing project dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: test fedaco
run: |
node --experimental-vm-modules node_modules/jest/bin/jest.js --config libs/fedaco/jest.config.ts