Skip to content

Support library code cells #223

Support library code cells

Support library code cells #223

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: CI=false npm run build
# - run: npm test