Skip to content

Fix typo and create version 0.0.3 #10

Fix typo and create version 0.0.3

Fix typo and create version 0.0.3 #10

Workflow file for this run

name: Node.js CI on Darwin
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [14.x]
npm-version: [7.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test