Skip to content

Merge branch 'feat/ts-v5' of github.com:torusresearch/eccrypto into f… #6

Merge branch 'feat/ts-v5' of github.com:torusresearch/eccrypto into f…

Merge branch 'feat/ts-v5' of github.com:torusresearch/eccrypto into f… #6

Workflow file for this run

# Run tests
on:
push:
branches-ignore:
- 'master'
name: CI
jobs:
test:
name: run tests
strategy:
matrix:
node: ["20.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build
- name: Run tests
run: npm run test:ci