Skip to content

Update license file #76

Update license file

Update license file #76

Workflow file for this run

name: unit
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
unit:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Run build
run: npm ci && npm run build
- name: Run lint
if: ${{ matrix.os == 'ubuntu-latest' }}
run: npm run lint
- name: Run test
run: npm run test