Skip to content

Update README.md

Update README.md #61

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v3
- name: install gmp3
run: |
sudo apt-get update
sudo apt-get -y install libgmp3-dev
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm test
run: npm test
- name: npm start
run: npm start