Skip to content

renamed npm package #13

renamed npm package

renamed npm package #13

Workflow file for this run

# name: Lint and test
# on: [push, pull_request]
# jobs:
# build_and_test:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# nodejs: [12, 14, 16, 17]
# steps:
# - uses: actions/checkout@v2
# # https://github.com/actions/setup-node
# - uses: actions/setup-node@v2-beta
# with:
# node-version: ${{ matrix.nodejs }}
# - run: npm install
# - run: npm run test
# - run: npm run lint
# - run: npm run build-all