Skip to content

Implement triangular #161

Implement triangular

Implement triangular #161

Workflow file for this run

name: build and test
on: [push, pull_request]
jobs:
job:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Git config
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout repository and submodules
uses: actions/[email protected]
with:
submodules: recursive
- uses: actions/[email protected]
with:
node-version: '14.x'
- run: npm install
- run: npm run lint
- run: npm test
env:
CI: true