Skip to content

feature: added option to change color of converged coordinates; fix: … #28

feature: added option to change color of converged coordinates; fix: …

feature: added option to change color of converged coordinates; fix: … #28

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- '**'
- '!main'
pull_request:
branches:
- '**'
- '!main'
jobs:
pass-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.14.0]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Create build
run: npm run build