Skip to content

Update LICENSE

Update LICENSE #11

Workflow file for this run

name: Node.js CI
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build:
strategy:
matrix:
os-type: ['ubuntu-latest', 'windows-latest', 'macos-latest']
node-version: [18.x]
runs-on: ${{ matrix.os-type }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build