Skip to content

self-referencing import doesn't work, undo it. https://github.com/nod… #32

self-referencing import doesn't work, undo it. https://github.com/nod…

self-referencing import doesn't work, undo it. https://github.com/nod… #32

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
with:
submodules: 'recursive'
token: ${{ secrets.ACCESS_TOKEN }}
- name: Use Node.js latest
uses: actions/setup-node@v3
with:
node-version: 17
- name: npm install, build, and test
# Note, we run bench and cov just to make sure they run successfully, but we're not doing anything with the result yet.
run: |
npm install
npm run build
npm run doc
npm run bench
npm test
npm run cov
env:
CI: true