noble-curves/.github/workflows/nodejs.yml
2022-12-04 18:19:01 +01:00

19 lines
459 B
YAML

name: Node CI
on: [push, pull_request]
jobs:
test:
name: v18 @ ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm run build --if-present
- run: cd curve-definitions; npm install; npm run build --if-present
- run: npm test
- run: npm run lint --if-present