Skip to content

feat: allow installation via npm + update dependencies #46

feat: allow installation via npm + update dependencies

feat: allow installation via npm + update dependencies #46

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node_version:
- 10
- 12
- 14
architecture:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.architecture }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
# - name: Tests
# run: npm test