Skip to content

Export helpers

Export helpers #175

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
# Base branches for PR
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
steps:
- uses: actions/checkout@v1
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm test
run: npm test
env:
CI: true