Skip to content

Update installation info #78

Update installation info

Update installation info #78

Workflow file for this run

name: Build and test
on: [push, pull_request]
jobs:
buildAndTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Build
run: npm run dist
- name: Run test
run: npm test