Skip to content

feat: add minor matrix function #6

feat: add minor matrix function

feat: add minor matrix function #6

name: Push to master
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run tests with coverage
run: npm run test:coverage
- name: Run linter
run: npm run lint
- name: Run formatter
run: npm run format
- name: Build
run: npm run build