Skip to content

Merge pull request #6 from kawanet/0.1.10 #14

Merge pull request #6 from kawanet/0.1.10

Merge pull request #6 from kawanet/0.1.10 #14

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14, 16, 18, 19 ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test