Skip to content

Create LICENSE

Create LICENSE #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 19
uses: actions/setup-node@v3
with:
node-version: 19
- name: Install Project
run: npm install
- name: CI
run: npm ci
- name: Build
run: npm run build --if-present
- name: Tests
run: npm run test