Skip to content

append the first leaf of type: Field #11

append the first leaf of type: Field

append the first leaf of type: Field #11

Workflow file for this run

#
# ci.yml
#
# Run tests for all pushed commits and opened pull requests on Github.
#
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Set up NodeJS
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Git checkout
uses: actions/checkout@v2
- name: NPM ci, build, & test
run: |
npm ci
npm run build:module --if-present
npm run test
env:
CI: true